mirror of
https://iceshrimp.dev/crimekillz/iceshrimp-161sh.git
synced 2024-11-24 13:09:07 +01:00
273d1a416a
* Create type definition for 'langmap' * Follow lint
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;
|
|
}
|