// Type definitions for nexpect 0.4.2 // Project: https://github.com/nodejitsu/nexpect // Definitions by: vvakame // Definitions: https://github.com/borisyankov/DefinitelyTyped /// 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; } }