UNPKG

332 BTypeScriptView Raw
1/**
2 * An interface for the time model used by the timepicker.
3 */
4export interface NgbTimeStruct {
5 /**
6 * The hour in the `[0, 23]` range.
7 */
8 hour: number;
9 /**
10 * The minute in the `[0, 59]` range.
11 */
12 minute: number;
13 /**
14 * The second in the `[0, 59]` range.
15 */
16 second: number;
17}