UNPKG

pnpm

Version:

A fast implementation of npm install

8 lines (7 loc) 229 B
import { PnpmOptions } from '../types'; /** * Perform installation. * @example * installCmd([ 'lodash', 'foo' ], { silent: true }) */ export default function installCmd(input: string[], opts: PnpmOptions): Promise<void>;