src/app/transports/models/calendar-options.ts
Properties |
subTitle |
subTitle:
|
Type : string
|
title |
title:
|
Type : string
|
viewDate |
viewDate:
|
Type : Date
|
viewType |
viewType:
|
Type : string
|
export interface CalendarOptions {
title: string;
subTitle: string;
viewDate: Date;
viewType: string;
}