import { IJsonRpcError } from "../web/json_rpc_error"; /** A JSON-RPC response with error. */ export interface IJsonResponseError { /** Gets or sets the {@link IJsonRpcError}. */ error: IJsonRpcError; /** * Gets or sets the identifier which corresponds to the value of the id member in the * request object. */ id: any; /** Gets the version of the JSON-RPC protocol. */ jsonrpc: string; /** Gets or sets the {@link IInt32} index. */ requestIndex: number; } //# sourceMappingURL=json_response_error.d.ts.map