mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
15 lines
395 B
TypeScript
15 lines
395 B
TypeScript
// Type definitions for global-npm 0.4
|
|
// Project: https://github.com/dracupid/global-npm
|
|
// Definitions by: Waseem Dahman <https://github.com/wsmd>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
import * as NPM from 'npm';
|
|
|
|
interface GlobalNPM {
|
|
GLOBAL_NPM_PATH: string;
|
|
GLOBAL_NPM_BIN: string;
|
|
}
|
|
|
|
declare var globalNPM: GlobalNPM & typeof NPM;
|
|
export = globalNPM;
|