UNPKG

ajsfw

Version:
11 lines (10 loc) 340 B
import { RmiMessageType } from "./enums"; import { IRMICall } from "./IRMICall"; import { IRMIReturn } from "./IRMIReturn"; import { IRMINotify } from "./IRMINotify"; export interface IRMIMessage { rmiSourceId: number; rmiDestinationId: number; rmiType: RmiMessageType; data: IRMICall | IRMIReturn | IRMINotify; }