UNPKG

ws-rmi

Version:

A Remote Method Invocation implementation written in JavaScript utilising the WebSocket protocol

5 lines (4 loc) 153 B
/** * Represents the types of RMI messages that can be sent. */ export declare type RMIMessageType = "REQUEST" | "RESPONSE_RESULT" | "RESPONSE_ERROR";