@tokens-studio/types
Version:
 
12 lines (11 loc) • 372 B
TypeScript
import { TokenSetStatus } from '../constants/TokenSetStatus.js';
export type ThemeObject = {
id: string;
name: string;
group?: string;
selectedTokenSets: Record<string, TokenSetStatus>;
$figmaStyleReferences?: Record<string, string>;
$figmaVariableReferences?: Record<string, string>;
$figmaCollectionId?: string;
$figmaModeId?: string;
};