diff options
Diffstat (limited to 'js/core.ts')
-rw-r--r-- | js/core.ts | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/js/core.ts b/js/core.ts index 9e94ffdbb..03473ff3d 100644 --- a/js/core.ts +++ b/js/core.ts @@ -1,13 +1,4 @@ // Copyright 2018-2019 the Deno authors. All rights reserved. MIT license. import { window } from "./window"; -type MessageCallback = (msg: Uint8Array) => void; - -// Declared in core/shared_queue.js. -interface DenoCore { - setAsyncHandler(cb: MessageCallback): void; - dispatch(control: Uint8Array, zeroCopy?: Uint8Array): null | Uint8Array; -} - -// TODO(ry) Rename to Deno.core.shared and Deno.core.setAsyncHandler. -export const DenoCore = window.DenoCore as DenoCore; +export const core = window.Deno.core as DenoCore; |