summaryrefslogtreecommitdiff
path: root/v8worker2.d.ts
diff options
context:
space:
mode:
Diffstat (limited to 'v8worker2.d.ts')
-rw-r--r--v8worker2.d.ts8
1 files changed, 0 insertions, 8 deletions
diff --git a/v8worker2.d.ts b/v8worker2.d.ts
deleted file mode 100644
index 1c39653a4..000000000
--- a/v8worker2.d.ts
+++ /dev/null
@@ -1,8 +0,0 @@
-// Copyright 2018 Ryan Dahl <ry@tinyclouds.org>
-// All rights reserved. MIT License.
-declare namespace V8Worker2 {
- function print(...args: any[]): void;
- type RecvCallback = (ab: ArrayBuffer) => void;
- function recv(cb: RecvCallback): void;
- function send(ab: ArrayBuffer): null | ArrayBuffer;
-}