1
0
silverbullet/plugos/sandboxes/web_worker_sandbox.ts
2024-01-14 13:38:39 +01:00

8 lines
244 B
TypeScript

import { WorkerSandbox } from "./worker_sandbox.ts";
import type { Plug } from "../plug.ts";
import { Sandbox } from "./sandbox.ts";
export function createSandbox<HookT>(plug: Plug<HookT>): Sandbox<HookT> {
return new WorkerSandbox(plug);
}