[textextensions] Add types (#31760)

This commit is contained in:
Dimitri Benin
2018-12-31 08:24:10 -08:00
committed by Wesley Wigham
parent 4ae2869a19
commit 91034ca243
4 changed files with 35 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
// Type definitions for textextensions 2.4
// Project: https://github.com/bevry/textextensions
// Definitions by: BendingBender <https://github.com/BendingBender>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
export = extensions;
declare const extensions: string[];
@@ -0,0 +1,3 @@
import extensions = require('textextensions');
extensions; // $ExpectType string[]
+23
View File
@@ -0,0 +1,23 @@
{
"compilerOptions": {
"module": "commonjs",
"lib": [
"es6"
],
"noImplicitAny": true,
"noImplicitThis": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"baseUrl": "../",
"typeRoots": [
"../"
],
"types": [],
"noEmit": true,
"forceConsistentCasingInFileNames": true
},
"files": [
"index.d.ts",
"textextensions-tests.ts"
]
}
+1
View File
@@ -0,0 +1 @@
{ "extends": "dtslint/dt.json" }