Bones/node_modules/typings/dist/bin-install.d.ts

14 lines
376 B
TypeScript
Raw Normal View History

2017-05-17 13:45:25 -04:00
import Promise = require('any-promise');
import { Emitter } from 'typings-core';
export declare function help(): string;
export interface Options {
cwd: string;
verbose: boolean;
save: boolean;
saveDev: boolean;
savePeer: boolean;
ambient: boolean;
emitter: Emitter;
}
export declare function exec(args: string[], options: Options): Promise<void>;