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