Time
Representation of a Time Time
export interface Time {
'formattedHour'?: string;
'hour'?: string;
'minute'?: string;
}Properties
| Name | Required | Type | Description |
|---|---|---|---|
formattedHour | Optional | string | Formatted hour {string} Time |
hour | Optional | string | Hour part of the time data {string} Time |
minute | Optional | string | Minute part of the time data {string} Time |