eve
Version:
Filesystem-first framework for durable backend AI agents that run anywhere.
15 lines (14 loc) • 349 B
TypeScript
/**
* Error thrown when the eve server returns a non-successful HTTP response.
*/
export declare class ClientError extends Error {
/**
* HTTP status code returned by the server.
*/
readonly status: number;
/**
* Raw response body text.
*/
readonly body: string;
constructor(status: number, body: string);
}