mancala/src/rtmt/rtmt.ts

7 lines
234 B
TypeScript
Raw Normal View History

2021-06-29 03:28:53 +03:00
export type Bytes = Uint8Array
2021-06-27 19:28:55 +03:00
export type OnMessage = (message : Bytes) => any
export interface RTMT{
sendMessage : (channel : string, message : Bytes) => any
listenMessage : (channel : string, callback : OnMessage) => any
}