[js-types] Add types

This commit is contained in:
Dimitri Benin
2019-01-13 18:25:15 +01:00
parent 3a69de74e2
commit da20a4de18
5 changed files with 41 additions and 0 deletions

8
types/js-types/index.d.ts vendored Normal file
View File

@@ -0,0 +1,8 @@
// Type definitions for js-types 2.0
// Project: https://github.com/sindresorhus/js-types#readme
// Definitions by: BendingBender <https://github.com/BendingBender>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
export = jsTypes;
declare const jsTypes: string[];

View File

@@ -0,0 +1,5 @@
import jsTypes = require('js-types');
import jsTypesJson = require('js-types/js-types.json');
jsTypes; // $ExpectType string[]
jsTypesJson; // $ExpectType string[]

3
types/js-types/js-types.json.d.ts vendored Normal file
View File

@@ -0,0 +1,3 @@
export = jsTypes;
declare const jsTypes: string[];

View File

@@ -0,0 +1,24 @@
{
"compilerOptions": {
"module": "commonjs",
"lib": [
"es6"
],
"noImplicitAny": true,
"noImplicitThis": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"baseUrl": "../",
"typeRoots": [
"../"
],
"types": [],
"noEmit": true,
"forceConsistentCasingInFileNames": true
},
"files": [
"index.d.ts",
"js-types.json.d.ts",
"js-types-tests.ts"
]
}

View File

@@ -0,0 +1 @@
{ "extends": "dtslint/dt.json" }