projects/core/src/cms/model/content-slot-component-data.model.ts
Properties |
|
| flexType |
flexType:
|
Type : string
|
| Optional |
| properties |
properties:
|
Type : any
|
| Optional |
| typeCode |
typeCode:
|
Type : string
|
| Optional |
| uid |
uid:
|
Type : string
|
| Optional |
export interface ContentSlotComponentData {
uid?: string;
typeCode?: string;
flexType?: string;
properties?: any;
}