@knapsack/app
Version:
Build Design Systems on top of knapsack, by Basalt
18 lines (17 loc) • 326 B
text/typescript
export type PatternRenderData = {
patternId: string;
templateId: string;
/**
* Data id from `saveData()`
* Cannot use with `demoId`
*/
dataId?: string;
/**
* Cannot use with `dataId`
*/
demoId?: string;
assetSetId?: string;
wrapHtml?: boolean;
isInIframe?: boolean;
cacheBuster?: string;
};