mirror of
https://github.com/elk-zone/elk.git
synced 2024-11-14 21:09:58 +00: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
|
|
}
|