11 lines
284 B
TypeScript
11 lines
284 B
TypeScript
|
import Promise = require('any-promise');
|
||
|
export declare function help(): string;
|
||
|
export interface Options {
|
||
|
cwd: string;
|
||
|
name: string;
|
||
|
out: string;
|
||
|
ambient: boolean;
|
||
|
verbose: boolean;
|
||
|
}
|
||
|
export declare function exec(args: string[], options: Options): Promise<any>;
|