forked from DefinitelyTyped/DefinitelyTyped
-
Notifications
You must be signed in to change notification settings - Fork 0
/
nexpect.d.ts
35 lines (28 loc) · 1.07 KB
/
nexpect.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
// Type definitions for nexpect 0.4.2
// Project: https://github.com/nodejitsu/nexpect
// Definitions by: vvakame <https://github.com/vvakame>
// Definitions: https://github.com/borisyankov/DefinitelyTyped
/// <reference path="../node/node.d.ts" />
declare module "nexpect" {
import child_process = require("child_process");
function spawn(command:string[], options?:ISpawnOptions):IChain;
function spawn(command:string, params?:any[], options?:ISpawnOptions):IChain;
function spawn(command:string, options?:ISpawnOptions):IChain;
interface IChain {
expect(expectation:string):IChain;
expect(expectation:RegExp):IChain;
wait(expectation:string):IChain;
wait(expectation:RegExp):IChain;
sendline(line:string):IChain;
sendEof():IChain;
run(callback:(err:Error, output:string[], exit: string | number)=>void):child_process.ChildProcess;
}
interface ISpawnOptions {
cwd?:string;
env?:any;
ignoreCase?:any;
stripColors?:any;
stream?:any;
verbose?:any;
}
}