mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-08-13 05:20:25 +00:00
[js-types] Add types
This commit is contained in:
Vendored
+8
@@ -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[];
|
||||
@@ -0,0 +1,5 @@
|
||||
import jsTypes = require('js-types');
|
||||
import jsTypesJson = require('js-types/js-types.json');
|
||||
|
||||
jsTypes; // $ExpectType string[]
|
||||
jsTypesJson; // $ExpectType string[]
|
||||
Vendored
+3
@@ -0,0 +1,3 @@
|
||||
export = jsTypes;
|
||||
|
||||
declare const jsTypes: string[];
|
||||
@@ -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"
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1 @@
|
||||
{ "extends": "dtslint/dt.json" }
|
||||
Reference in New Issue
Block a user