npmci/dist/npmci.config.d.ts

8 lines
244 B
TypeScript
Raw Normal View History

2017-08-28 15:11:47 +00:00
import { KeyValueStore } from 'npmextra';
2016-11-24 22:21:40 +00:00
export interface INpmciOptions {
2017-08-28 15:19:31 +00:00
npmGlobalTools: string[];
dockerRegistryRepoMap: any;
2016-11-24 22:21:40 +00:00
}
2017-08-28 15:11:47 +00:00
export declare let kvStorage: KeyValueStore;
2017-03-11 00:10:37 +00:00
export declare let getConfig: () => Promise<INpmciOptions>;