@zowe/imperative
Version:
framework for building configurable CLIs
18 lines • 415 B
TypeScript
/**
* Npm config options passed to the install command.
*/
export interface INpmInstallArgs {
/**
* The location to install global packages
*/
prefix: string;
/**
* The base URL of the npm package registry
*/
registry?: string;
/**
* Allows us to handle scoped registries in the future
*/
[ ]: string;
}
//# sourceMappingURL=INpmInstallArgs.d.ts.map