donobu
Version:
Create browser automations with an LLM agent and replay them as Playwright scripts.
14 lines • 409 B
TypeScript
/**
* A thin response wrapper for non-5xx errors.
*/
export type DonobuErrorResponse = {
/**
* The Donobu error code. This matches DonobuException's donobuErrorCode.
*/
readonly code: string;
/**
* The human-readable message for the error. This matches DonobuException's userFacingMessage.
*/
readonly message: string;
};
//# sourceMappingURL=DonobuErrorResponse.d.ts.map