changes.mady.by.user Jordan Kasper (Deactivated)
Saved on Sept 01, 2022
Saved on Oct 24, 2022
...
interface PopularQueriesContentItem { query: string; count: number; weight: number; }
interface PopularQueriesContent extends ContentType { type: 'popular-queries'; items: Array<PopularQueriesContentItem>; }
interface CustomWidgetContent extends ContentType { type: 'custom-widget'; data: any; }
interface ContentZoneItem { mobile: ContentType; tablet: ContentType; desktop: ContentType; }
interface ContentZone { name: string; items: Array<ContentZoneItem>; }