From 35e07a23ba6738ee160cd6ee9ac20e3834c9fd5f Mon Sep 17 00:00:00 2001 From: Claas Ahlrichs Date: Sun, 7 Apr 2019 11:30:11 +0200 Subject: [PATCH] npx dts-gen -m isarray --dt --- types/isarray/index.d.ts | 9 +++++++++ types/isarray/isarray-tests.ts | 0 types/isarray/tsconfig.json | 22 ++++++++++++++++++++++ types/isarray/tslint.json | 1 + 4 files changed, 32 insertions(+) create mode 100644 types/isarray/index.d.ts create mode 100644 types/isarray/isarray-tests.ts create mode 100644 types/isarray/tsconfig.json create mode 100644 types/isarray/tslint.json diff --git a/types/isarray/index.d.ts b/types/isarray/index.d.ts new file mode 100644 index 0000000000..b2111930d1 --- /dev/null +++ b/types/isarray/index.d.ts @@ -0,0 +1,9 @@ +// Type definitions for isarray 2.0 +// Project: https://github.com/juliangruber/isarray +// Definitions by: My Self +// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped + +export = isarray; + +declare function isarray(p0: any): any; + diff --git a/types/isarray/isarray-tests.ts b/types/isarray/isarray-tests.ts new file mode 100644 index 0000000000..e69de29bb2 diff --git a/types/isarray/tsconfig.json b/types/isarray/tsconfig.json new file mode 100644 index 0000000000..c072bf1eb3 --- /dev/null +++ b/types/isarray/tsconfig.json @@ -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" + ] +} diff --git a/types/isarray/tslint.json b/types/isarray/tslint.json new file mode 100644 index 0000000000..3db14f85ea --- /dev/null +++ b/types/isarray/tslint.json @@ -0,0 +1 @@ +{ "extends": "dtslint/dt.json" }