@signalwire/core
Version:
Shared code for the SignalWire JS SDK
16 lines • 406 B
TypeScript
import { JSONRPCMethod } from '../utils/interfaces';
type RPCExecuteParams = {
id?: string;
method: JSONRPCMethod;
params: Record<string, unknown>;
};
export declare const RPCExecute: ({ method, params }: RPCExecuteParams) => {
id: string;
method: JSONRPCMethod;
params: {
[key: string]: any;
};
jsonrpc: "2.0";
};
export {};
//# sourceMappingURL=RPCExecute.d.ts.map