mirror of
https://github.com/denoland/deno.git
synced 2024-10-31 09:14:20 -04:00
11 lines
320 B
TypeScript
11 lines
320 B
TypeScript
// Copyright 2018 Ryan Dahl <ry@tinyclouds.org>
|
|
// All rights reserved. MIT License.
|
|
type MessageCallback = (msg: ArrayBuffer) => void;
|
|
|
|
interface Deno {
|
|
sub(channel: string, cb: MessageCallback): void;
|
|
pub(channel: string, msg: ArrayBuffer): null | ArrayBuffer;
|
|
print(x: string): void;
|
|
}
|
|
|
|
declare let deno: Deno;
|