npmci/dist/npmci.config.d.ts

7 lines
212 B
TypeScript
Raw Permalink Normal View History

2017-08-28 17:11:47 +02:00
import { KeyValueStore } from 'npmextra';
2016-11-24 23:21:40 +01:00
export interface INpmciOptions {
globalNpmTools: string[];
}
2017-08-28 17:11:47 +02:00
export declare let kvStorage: KeyValueStore;
2017-03-11 01:10:37 +01:00
export declare let getConfig: () => Promise<INpmciOptions>;