vue-devui
Version:
DevUI components based on Vite and Vue3
17 lines (16 loc) • 520 B
TypeScript
export declare const i18nText: {
en: {
today: string;
monthsOfYear: string[];
yearDisplay(year: string): string;
monthDisplay(strMonthIndex: string): string;
yearAndMonthDisplay(year: string, strMonthIndex: string): string;
};
zh: {
today: string;
monthsOfYear: string[];
yearDisplay(year: string): string;
monthDisplay(strMonthIndex: string): string;
yearAndMonthDisplay(year: string, strMonthIndex: string): string;
};
};