mancala/src/rtmt/rtmt.ts
2021-06-29 03:28:53 +03:00

7 lines
234 B
TypeScript

export type Bytes = Uint8Array
export type OnMessage = (message : Bytes) => any
export interface RTMT{
sendMessage : (channel : string, message : Bytes) => any
listenMessage : (channel : string, callback : OnMessage) => any
}