Create type definition for 'langmap' (#4059)

* Create type definition for 'langmap'

* Follow lint
This commit is contained in:
Acid Chicken (硫酸鶏) 2019-02-03 23:41:05 +09:00 committed by Aya Morisawa
parent 5049870b6e
commit fe13c17fcb
2 changed files with 11 additions and 1 deletions

10
src/@types/langmap.d.ts vendored Normal file
View file

@ -0,0 +1,10 @@
declare module 'langmap' {
type Lang = {
nativeName: string;
englishName: string;
};
const langmap: { [lang: string]: Lang };
export = langmap;
}

View file

@ -9,7 +9,7 @@ import getDriveFileUrl from '../../../../misc/get-drive-file-url';
import { parse, parsePlain } from '../../../../mfm/parse';
import extractEmojis from '../../../../misc/extract-emojis';
import extractHashtags from '../../../../misc/extract-hashtags';
const langmap = require('langmap');
import * as langmap from 'langmap';
export const meta = {
desc: {