8 lines
244 B
TypeScript
8 lines
244 B
TypeScript
import { KeyValueStore } from 'npmextra';
|
|
export interface INpmciOptions {
|
|
npmGlobalTools: string[];
|
|
dockerRegistryRepoMap: any;
|
|
}
|
|
export declare let kvStorage: KeyValueStore;
|
|
export declare let getConfig: () => Promise<INpmciOptions>;
|