interface BaseLocale {
    getDateFormat: (() => string);
    getDateHoursMinutesFormat: (() => string);
    getDateTimeFormat: (() => string);
    getDateTimeMillsFormat: (() => string);
    getDecimalSeparator: (() => string);
    getThousandSeparator: (() => string);
    getTimeFormat: (() => string);
    getTimeMillsFormat: (() => string);
}

Hierarchy (view full)

Properties

getDateFormat: (() => string)
getDateHoursMinutesFormat: (() => string)
getDateTimeFormat: (() => string)
getDateTimeMillsFormat: (() => string)
getDecimalSeparator: (() => string)
getThousandSeparator: (() => string)
getTimeFormat: (() => string)
getTimeMillsFormat: (() => string)