silverbullet/plugos/sandboxes/web_worker_sandbox.ts

8 lines
244 B
TypeScript
Raw Normal View History

2024-01-14 20:38:39 +08:00
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);
}