npx dts-gen -m isarray --dt

This commit is contained in:
Claas Ahlrichs
2019-04-07 11:30:11 +02:00
parent 6f7a141fb8
commit 35e07a23ba
4 changed files with 32 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
// Type definitions for isarray 2.0
// Project: https://github.com/juliangruber/isarray
// Definitions by: My Self <https://github.com/me>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
export = isarray;
declare function isarray(p0: any): any;
View File
+22
View File
@@ -0,0 +1,22 @@
{
"compilerOptions": {
"module": "commonjs",
"lib": [
"es6"
],
"noImplicitAny": true,
"noImplicitThis": true,
"strictNullChecks": true,
"baseUrl": "../",
"typeRoots": [
"../"
],
"types": [],
"noEmit": true,
"forceConsistentCasingInFileNames": true
},
"files": [
"index.d.ts",
"isarray-tests.ts"
]
}
+1
View File
@@ -0,0 +1 @@
{ "extends": "dtslint/dt.json" }