mancala/src/rtmt/rtmt.ts

7 lines
236 B
TypeScript
Raw Normal View History

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