[git-config-path] Add types

This commit is contained in:
Dimitri Benin 2018-12-25 14:37:46 +01:00
parent 682ebb5fcd
commit 41c5619a6d
4 changed files with 36 additions and 0 deletions

View File

@ -0,0 +1,4 @@
import gitConfigPath = require('git-config-path');
gitConfigPath(); // $ExpectType string
gitConfigPath('global'); // $ExpectType string

8
types/git-config-path/index.d.ts vendored Normal file
View File

@ -0,0 +1,8 @@
// Type definitions for git-config-path 2.0
// Project: https://github.com/jonschlinkert/git-config-path
// Definitions by: BendingBender <https://github.com/BendingBender>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
export = gitConfigPath;
declare function gitConfigPath(global?: 'global'): string;

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",
"git-config-path-tests.ts"
]
}

View File

@ -0,0 +1 @@
{ "extends": "dtslint/dt.json" }