src/app/components/page-element/page-def.ts
An interface representing the page definitions
Properties |
[key: string]:
|
Details of the page element |
type |
type:
|
Type : string
|
Type of the page element |
export interface PageDef {
/** Type of the page element */
type: string;
/** Details of the page element */
// eslint-disable-next-line @typescript-eslint/no-explicit-any
[key: string]: any;
}