UNPKG

424 BTypeScriptView Raw
1export interface ExtendedDateTimeFormatOptions extends Intl.DateTimeFormatOptions {
2 hourCycle?: 'h11' | 'h12' | 'h23' | 'h24';
3}
4/**
5 * Parse Date time skeleton into Intl.DateTimeFormatOptions
6 * Ref: https://unicode.org/reports/tr35/tr35-dates.html#Date_Field_Symbol_Table
7 * @public
8 * @param skeleton skeleton string
9 */
10export declare function parseDateTimeSkeleton(skeleton: string): ExtendedDateTimeFormatOptions;