projects/prestations-ng/src/foehn-help-modal/foehn-help-modal.type.ts
Properties |
|
body |
body:
|
Type : string
|
Optional |
buttonTitle |
buttonTitle:
|
Type : string
|
Optional |
images |
images:
|
Type : Image[]
|
Optional |
modalSize |
modalSize:
|
Type : string
|
Optional |
title |
title:
|
Type : string
|
export interface HelpModal {
buttonTitle?: string;
title: string;
body?: string;
images?: Image[];
modalSize?: string;
}
export interface Image {
src?: string;
alt?: string;
width?: string;
height?: string;
}