diff options
Diffstat (limited to 'cli/js/ops/worker_host.ts')
-rw-r--r-- | cli/js/ops/worker_host.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/js/ops/worker_host.ts b/cli/js/ops/worker_host.ts index 1a7e671f4..0b9f81795 100644 --- a/cli/js/ops/worker_host.ts +++ b/cli/js/ops/worker_host.ts @@ -24,6 +24,6 @@ export function hostPostMessage(id: number, data: Uint8Array): void { sendSync("op_host_post_message", { id }, data); } -export async function hostGetMessage(id: number): Promise<any> { +export function hostGetMessage(id: number): Promise<any> { return sendAsync("op_host_get_message", { id }); } |