ngb-time-struct.d.ts 332 B

1234567891011121314151617
  1. /**
  2. * An interface for the time model used by the timepicker.
  3. */
  4. export 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. }