mirror of
https://github.com/wassname/DefinitelyTyped.git
synced 2026-08-20 12:00:53 +08:00
10 lines
375 B
TypeScript
10 lines
375 B
TypeScript
// Type definitions for git-config
|
|
// Project: https://github.com/eugeneware/git-config
|
|
// Definitions by: Sam Saint-Pettersen <https://github.com/stpettersens>
|
|
// Definitions: https://github.com/borisyankov/DefinitelyTyped
|
|
|
|
declare module "git-config" {
|
|
function gitConfig(gitFile_or_cb: any, cb?: any): void; // Asynchronous version.
|
|
export = gitConfig;
|
|
}
|