Replicate multibuffer excerpt additions and removals to followers
This commit is contained in:
parent
a48cd9125b
commit
9314c0e313
5 changed files with 254 additions and 41 deletions
|
@ -12,8 +12,16 @@ function isStyleSet(key: any): key is StyleSets {
|
|||
"negative",
|
||||
].includes(key);
|
||||
}
|
||||
|
||||
function isStyle(key: any): key is Styles {
|
||||
return ["default", "active", "disabled", "hovered", "pressed", "inverted"].includes(key);
|
||||
return [
|
||||
"default",
|
||||
"active",
|
||||
"disabled",
|
||||
"hovered",
|
||||
"pressed",
|
||||
"inverted",
|
||||
].includes(key);
|
||||
}
|
||||
function getStyle(
|
||||
layer: Layer,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue