Create type definition for ./locales (#4117)

This commit is contained in:
Acid Chicken (硫酸鶏) 2019-02-04 01:46:59 +09:00 committed by GitHub
parent c4f7491322
commit 5891135ac1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 1 deletions

5
locales/index.d.ts vendored Normal file
View file

@ -0,0 +1,5 @@
type Locale = { [key: string]: string };
declare const locales: { [lang: string]: Locale };
export default locales;