mirror of
https://github.com/denoland/deno.git
synced 2024-11-22 04:51:22 +00:00
6 lines
212 B
TypeScript
6 lines
212 B
TypeScript
declare module "deno" {
|
|
type MessageCallback = (msg: Uint8Array) => void;
|
|
function sub(channel: string, cb: MessageCallback): void;
|
|
function pub(channel: string, payload: Uint8Array): null | ArrayBuffer;
|
|
}
|