@hxui/angular
Version:
An Angular library based on the [HXUI design system](https://hxui.io).
18 lines (17 loc) • 350 B
TypeScript
/**
* An interface for the time model used by the time-picker.
*/
export interface HxaTimeStruct {
/**
* The hour in the `[0, 23]` range.
*/
hour: number;
/**
* The minute in the `[0, 59]` range.
*/
minute: number;
/**
* The second in the `[0, 59]` range.
*/
second: number;
}