tapbundle/dist/tapbundle.classes.taptools.d.ts
2017-04-28 07:49:57 +00:00

17 lines
345 B
TypeScript

export declare class TapTools {
/**
* the referenced TapTest
*/
private _tapTest;
constructor(TapTestArg: any);
/**
* allow failure
*/
allowFailure(): void;
/**
* async/await delay method
*/
delayFor(timeMilliArg: any): Promise<void>;
timeout(timeMilliArg: number): Promise<void>;
}