@drewsonne/maya-dates
Version:
Typescript package to manipulate dates in the Maya Calendar
21 lines (20 loc) • 492 B
TypeScript
export type Locale = string;
export interface Translation {
canonical: string;
alternatives: string[];
}
export interface TzolkinDayTranslations {
[dayName: string]: Translation;
}
export interface HaabMonthTranslations {
[monthName: string]: Translation;
}
export interface LocaleDefinition {
locale: Locale;
name: string;
tzolkinDays?: TzolkinDayTranslations;
haabMonths?: HaabMonthTranslations;
}
export interface I18nRenderOptions {
locale?: Locale;
}