mirror of
https://github.com/paricafe/misskey.git
synced 2024-11-29 10:06:44 -06:00
11 lines
156 B
TypeScript
11 lines
156 B
TypeScript
|
declare module 'langmap' {
|
||
|
type Lang = {
|
||
|
nativeName: string;
|
||
|
englishName: string;
|
||
|
};
|
||
|
|
||
|
const langmap: { [lang: string]: Lang };
|
||
|
|
||
|
export = langmap;
|
||
|
}
|