UNPKG

@zowe/imperative

Version:
15 lines 406 B
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