date-and-time
Version:
The simplest, most intuitive date and time library
22 lines (17 loc) • 513 B
TypeScript
/** @preserve Copyright (c) KNOWLEDGECODE - MIT License */
type CompiledObject = string[];
interface LocaleOptions {
compiledObj: CompiledObject;
style: 'long' | 'short' | 'narrow';
case?: 'uppercase' | 'lowercase';
}
/**
* @file Finnish (fi)
*/
declare const _default: {
getLocale(): string;
getMonthList(options: LocaleOptions): string[];
getDayOfWeekList(options: LocaleOptions): string[];
getMeridiemList(options: LocaleOptions): string[];
};
export { _default as default };