mirror of
https://github.com/elyby/accounts-frontend.git
synced 2025-01-04 11:12:49 +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;
|
||
|
}
|