Type Alias GetThemesQuery

GetThemesQuery: {
    project: {
        branch: {
            themeGroups: {
                data: {
                    name: string;
                    options?: {
                        figmaCollectionId?: string | null;
                        figmaModeId?: string | null;
                        figmaStyleReferences?: any | null;
                        figmaVariableReferences?: any | null;
                        name: string;
                        selectedTokenSets: any;
                    }[] | null;
                }[];
                totalPages: number;
            };
        };
    };
}