mirror of
https://github.com/elk-zone/elk.git
synced 2024-11-24 10:16:06 +03:00
9 lines
245 B
TypeScript
9 lines
245 B
TypeScript
|
declare module 'virtual:iso-639-1' {
|
||
|
export interface AvailableLanguages {
|
||
|
code: string
|
||
|
nativeName: string
|
||
|
}
|
||
|
export const supportedTranslationLanguages: AvailableLanguages[]
|
||
|
export function getDisplayName(code: string): string
|
||
|
}
|