We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b7ac705 commit 8c0a745Copy full SHA for 8c0a745
v8worker2.d.ts
@@ -0,0 +1,6 @@
1
+declare namespace V8Worker2 {
2
+ function print(...args: any[]): void;
3
+ type RecvCallback = (ab: ArrayBuffer) => void;
4
+ function recv(cb: RecvCallback): void;
5
+ function send(ab: ArrayBuffer): null | ArrayBuffer;
6
+}
0 commit comments