Type Alias TrembitaSendError
TrembitaSendError:
| Readonly<{ cause: unknown; kind: "fetch_failed" }>
| Readonly<{ kind: "timeout"; timeoutMs: number }>
| Readonly<{ kind: "circuit_open"; retryAfterMs: number }>
| Readonly<{ cause: unknown; kind: "invalid_json" }>
| Readonly<
{
kind: "invalid_request_options";
reason: "missing_path"
| "path_not_string";
},
>