npmci/dist/npmci.config.d.ts

10 lines
323 B
TypeScript
Raw 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 {
2017-08-28 17:19:31 +02:00
npmGlobalTools: string[];
dockerRegistryRepoMap: any;
2017-08-29 06:07:13 +02:00
dockerBuildargEnvMap: any;
2016-11-24 23:21:40 +01:00
}
2017-08-28 17:11:47 +02:00
export declare let kvStorage: KeyValueStore;
2017-08-28 18:09:59 +02:00
export declare let configObject: INpmciOptions;
2017-03-11 01:10:37 +01:00
export declare let getConfig: () => Promise<INpmciOptions>;