diff --git a/.changeset/dry-rocks-hide.md b/.changeset/dry-rocks-hide.md new file mode 100644 index 0000000..4cf9749 --- /dev/null +++ b/.changeset/dry-rocks-hide.md @@ -0,0 +1,5 @@ +--- +'@tokens-studio/types': patch +--- + +Add missing figma-related properties to the ThemeObject type diff --git a/src/types/ThemeObject.ts b/src/types/ThemeObject.ts index 8bc175f..fd9cec7 100644 --- a/src/types/ThemeObject.ts +++ b/src/types/ThemeObject.ts @@ -11,4 +11,7 @@ export type ThemeObject = { // @README these are the style IDs from Figma // this is considered meta-data so it is prefixed with $ $figmaStyleReferences?: Record; + $figmaVariableReferences?: Record; + $figmaCollectionId?: string; + $figmaModeId?: string; };