DefinitelyTyped/types/global-npm/index.d.ts
Waseem Dahman 0e6efc8134 [global-npm] Add types for global-npm (#41705)
* add types for global-npm

* remove reference import
2020-01-20 18:59:45 -05:00

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;