keeloq - v0.1.1
    Preparing search index...

    Interface BaseRPCResponse<T>

    Basic response in JsonRPC format

    interface BaseRPCResponse<T> {
        id: string;
        jsonrpc: string;
        result: T;
    }

    Type Parameters

    • T
    Index

    Properties

    Properties

    id: string

    Request ID (not used)

    jsonrpc: string

    JsonRPC version (not used)

    result: T

    Request result