import { JRPCObjectBase } from "./jrpc-object.base"; import { TypeId } from "../types"; /** * JSONRPC Response Body Interface * * @author Mahsum UREBE * @licence MIT * @interface */ export interface JRPCResponseBodyInterface extends JRPCObjectBase { /** * Result * * @type {any} */ result: TData; }