Type alias ISOHours

ISOHours: `${Enumerate<2>}${Digit}` | `2${Enumerate<4>}`

ISO hours value ("00" to "23").

Example

const hours01: ISOHours = "01";
const hours06: ISOHours = "06";
const hours23: ISOHours = "23";