src/app/components/page-data/page-data.ts
An interface representing the details of the page data
Properties |
descriptions |
descriptions:
|
Type : string
|
Description of the page data |
heading |
heading:
|
Type : string
|
Title of the page data |
export interface PageDataItems {
/** Title of the page data */
heading: string;
/** Description of the page data */
descriptions: string;
}