ionic3-datepicker
Version:
A date picker for ionic 3 and 2 framework
52 lines (51 loc) • 1.4 kB
TypeScript
export declare module nls {
const _nls: {
'custom': {};
'en-US': {
monday: boolean;
weekdays: string[];
months: string[];
};
'en-UK': {
weekdays: string[];
months: string[];
};
'pt-BR': {
weekdays: string[];
months: string[];
};
'he-IL': {
weekdays: string[];
months: string[];
};
'ru-RU': {
weekdays: string[];
months: string[];
};
'de': {
weekdays: string[];
months: string[];
};
'fi': {
weekdays: string[];
months: string[];
};
'zh-CN': {
weekdays: string[];
months: string[];
};
'zh-TW': {
weekdays: string[];
months: string[];
};
};
function getWeekdays(locale: languages): string[];
function getMonths(locale: languages): string[];
function getNls(locale: languages): {
weekdays: string[];
months: string[];
monday: boolean;
};
function checkExists(locale: string): boolean;
}
export declare type languages = string | 'en-US' | 'en-UK' | 'pt-BR' | 'he-IL' | 'ru-RU' | 'de' | 'fi' | 'zh-TW' | 'zh-CN' | 'custom';