UNPKG

@knapsack/app

Version:

Build Design Systems on top of knapsack, by Basalt

20 lines 458 B
export interface KnapsackCustomPageSlice { id: string; /** * Match this to a Slices `id` to use it * @todo Change to `sliceType` */ blockId: string; data: any; } export interface KnapsackCustomPage { id: string; title: string; slices?: KnapsackCustomPageSlice[]; } export interface KnapsackCustomPagesData { pages?: { [id: string]: KnapsackCustomPage; }; } //# sourceMappingURL=custom-pages.d.ts.map