llmwire - v2.2.0
    Preparing search index...

    Interface JsonRpcResponse

    interface JsonRpcResponse {
        error?: { code: number; data?: unknown; message: string };
        id: number;
        jsonrpc: "2.0";
        result?: any;
    }
    Index
    error?: { code: number; data?: unknown; message: string }
    id: number
    jsonrpc: "2.0"
    result?: any