Type Alias GetTokenSetsQuery

GetTokenSetsQuery: {
    project: {
        branch: {
            tokenSets: {
                data: {
                    name: string;
                    orderIndex: number;
                    raw?: any | null;
                    source?: {
                        graph: any;
                    } | null;
                    type: TokenSetType;
                }[];
                totalPages: number;
            };
        };
    };
}