selenium-state-machine
Version:
Write Selenium tests using state machines
13 lines • 368 B
TypeScript
/**
* Error signalling some irreversible error has occurred in the state machine.
*/
export declare class CriticalError extends Error {
constructor(message?: string);
}
/**
* Error signalling some component in state machine timed out.
*/
export declare class TimeoutError extends Error {
constructor(message?: string);
}
//# sourceMappingURL=Error.d.ts.map