UNPKG

@buurman/sdk

Version:

The buurman SDK

10 lines 314 B
export interface NpmApi { command(command: string, args?: string[]): this; init(): this; update(): this; install(packages?: string | string[], flags?: string[]): this; execute(): Promise<void>; } declare const npm: () => NpmApi; export default npm; //# sourceMappingURL=NpmApi.d.ts.map