mirror of
https://github.com/paricafe/misskey.git
synced 2024-11-29 07:46:43 -06:00
fe13c17fcb
* Create type definition for 'langmap' * Follow lint
10 lines
156 B
TypeScript
10 lines
156 B
TypeScript
declare module 'langmap' {
|
|
type Lang = {
|
|
nativeName: string;
|
|
englishName: string;
|
|
};
|
|
|
|
const langmap: { [lang: string]: Lang };
|
|
|
|
export = langmap;
|
|
}
|