@zowe/imperative
Version:
framework for building configurable CLIs
15 lines • 406 B
TypeScript
import { INpmInstallArgs } from "./INpmInstallArgs";
/**
* Location info for an npm package.
*/
export interface INpmRegistryInfo {
/**
* The origin of npm package (registry URL or absolute path)
*/
location: string;
/**
* Defines npm config values to pass to `npm install` command
*/
npmArgs: Partial<INpmInstallArgs>;
}
//# sourceMappingURL=INpmRegistryInfo.d.ts.map