2022-05-19 14:35:19 +05:30
|
|
|
export type UnknownMap = Record<string, unknown>;
|
2022-04-08 12:29:42 +05:30
|
|
|
export type Translation = { translation: string; context?: string };
|
|
|
|
export type LanguageMap = Record<string, Translation>;
|
2022-04-23 14:53:44 +05:30
|
|
|
|
|
|
|
export type CountryInfoMap = Record<string, CountryInfo | undefined>;
|
|
|
|
export interface CountryInfo {
|
|
|
|
code: string;
|
|
|
|
currency: string;
|
|
|
|
currency_fraction?: string;
|
|
|
|
currency_fraction_units?: number;
|
|
|
|
smallest_currency_fraction_value?: number;
|
|
|
|
currency_symbol?: string;
|
|
|
|
timezones?: string[];
|
|
|
|
fiscal_year_start: string;
|
|
|
|
fiscal_year_end: string;
|
|
|
|
locale: string;
|
|
|
|
}
|