mirror of
https://github.com/elyby/accounts-frontend.git
synced 2025-01-01 17:52:10 +05:30
14 lines
235 B
TypeScript
14 lines
235 B
TypeScript
declare module 'app/i18n' {
|
|
export interface Locale {
|
|
code: string;
|
|
name: string;
|
|
englishName: string;
|
|
progress: number;
|
|
isReleased: boolean;
|
|
}
|
|
|
|
const LANGS: Record<string, Locale>;
|
|
|
|
export default LANGS;
|
|
}
|