UNPKG

@paperbits/core

Version:
21 lines (17 loc) 383 B
import { WidgetModel } from "@paperbits/common/widgets/widgetModel"; /** * Model of Content widget. */ export class ContentModel { /** * Type of the content, e.g. `page` or `layout`. */ public type: string; /** * Descendant widgets. */ public widgets: WidgetModel[]; constructor() { this.widgets = []; } }