@mastergo/plugin-typings 2.15.1-beta.0 → 2.15.1-beta.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +4 -3
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1127,7 +1127,7 @@ declare global {
|
|
|
1127
1127
|
): void
|
|
1128
1128
|
|
|
1129
1129
|
// --- Group ---
|
|
1130
|
-
getGroupList(collectionId?: string):
|
|
1130
|
+
getGroupList(collectionId?: string): VariableGroupNode[]
|
|
1131
1131
|
createGroup(
|
|
1132
1132
|
collectionId: string,
|
|
1133
1133
|
variableIds: string[],
|
|
@@ -1817,13 +1817,13 @@ declare global {
|
|
|
1817
1817
|
readonly collectionId: string
|
|
1818
1818
|
}
|
|
1819
1819
|
|
|
1820
|
-
interface
|
|
1820
|
+
interface VariableGroupNode {
|
|
1821
1821
|
readonly id: string
|
|
1822
1822
|
readonly name: string
|
|
1823
1823
|
readonly currentPath?: string
|
|
1824
1824
|
readonly level: number
|
|
1825
1825
|
readonly isLeaf: boolean
|
|
1826
|
-
readonly children?: ReadonlyArray<
|
|
1826
|
+
readonly children?: ReadonlyArray<VariableGroupNode>
|
|
1827
1827
|
}
|
|
1828
1828
|
|
|
1829
1829
|
interface FontFamilyInfo {
|
|
@@ -2027,6 +2027,7 @@ declare global {
|
|
|
2027
2027
|
}
|
|
2028
2028
|
|
|
2029
2029
|
interface MotionBlurEffect {
|
|
2030
|
+
readonly type: 'MOTION_BLUR'
|
|
2030
2031
|
readonly isVisible: boolean
|
|
2031
2032
|
readonly radius: number
|
|
2032
2033
|
readonly angle: number
|