export function isRPCMessage()

in src/types.ts [43:45]


export function isRPCMessage(data: any): data is RPCMessageWithCounter<any> {
  return (data.type === 'method' || data.type === 'reply') && typeof data.counter === 'number';
}