Merge pull request #31287 from BendingBender/lock-system

Add types for lock-system
This commit is contained in:
Nathan Shively-Sanders
2018-12-17 14:51:46 -08:00
committed by GitHub
4 changed files with 35 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
// Type definitions for lock-system 1.3
// Project: https://github.com/sindresorhus/lock-system#readme
// Definitions by: BendingBender <https://github.com/BendingBender>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
export = lockSystem;
declare function lockSystem(): void;
+3
View File
@@ -0,0 +1,3 @@
import lockSystem = require('lock-system');
lockSystem();
+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",
"lock-system-tests.ts"
]
}
+1
View File
@@ -0,0 +1 @@
{ "extends": "dtslint/dt.json" }