summaryrefslogtreecommitdiff
path: root/js/libdeno.ts
blob: 142d779c2b8dceb5ff30ce30dfdccae8a4cc2dcc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
import { RawSourceMap } from "./types";
import { globalEval } from "./global-eval";

// The libdeno functions are moved so that users can't access them.
type MessageCallback = (msg: Uint8Array) => void;
interface Libdeno {
  recv(cb: MessageCallback): void;

  send(msg: ArrayBufferView): null | Uint8Array;

  print(x: string): void;

  setGlobalErrorHandler: (
    handler: (
      message: string,
      source: string,
      line: number,
      col: number,
      error: Error
    ) => void
  ) => void;

  mainSource: string;
  mainSourceMap: RawSourceMap;
}

const window = globalEval("this");
export const libdeno = window.libdeno as Libdeno;