Error payload emitted by renderer backends.

Renderer failures are reported through the SDK result shape so callers can branch on the error category without depending on backend-specific exception types.

interface RendererError {
    error: string;
    ok: false;
    type: SDKErrorType;
}

Properties

Properties

error: string

Human-readable error message.

ok: false

Always false for renderer error events.

SDK-level category for the renderer failure.