@paperbits/core
Version:
Paperbits core components.
21 lines (17 loc) • 383 B
text/typescript
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 = [];
}
}