8 lines
234 B
TypeScript
8 lines
234 B
TypeScript
|
import Promise = require('any-promise');
|
||
|
export declare function help(): string;
|
||
|
export interface Options {
|
||
|
ambient: boolean;
|
||
|
versions: boolean;
|
||
|
}
|
||
|
export declare function exec(args: string[], options: Options): Promise<void>;
|