oxd/types/utils/locale.d.ts
2023-05-02 09:36:43 +08:00

13 lines
297 B
TypeScript

export declare type LangPack = {
narrow?: string[];
short?: string[];
abbreviated?: string[];
wide?: string[];
};
export interface LangStrings {
months: LangPack;
days: LangPack;
}
declare function buildLocale(langstrings: LangStrings): Locale;
export default buildLocale;