diff options
author | Yingchen Xue <yingchenxue@qq.com> | 2018-06-04 14:59:02 +0800 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2018-06-04 08:59:02 +0200 |
commit | 3ddb4017fd7c7bb6f0eafe6b23eb0ef6a70cd0d7 (patch) | |
tree | 37fb24c52fbe7cd2fe49239004f1698f55988886 /dispatch.ts | |
parent | 0639f9b7cc845579c59f5a792dcacb76bb28a749 (diff) |
Lint (#83)
Diffstat (limited to 'dispatch.ts')
-rw-r--r-- | dispatch.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dispatch.ts b/dispatch.ts index f6823ceff..01bd58bed 100644 --- a/dispatch.ts +++ b/dispatch.ts @@ -4,7 +4,7 @@ import { typedArrayToArrayBuffer } from "./util"; import { _global } from "./globals"; import { main as pb } from "./msg.pb"; -type MessageCallback = (msg: Uint8Array) => void; +export type MessageCallback = (msg: Uint8Array) => void; //type MessageStructCallback = (msg: pb.IMsg) => void; const send = V8Worker2.send; |