1
0
silverbullet/plugos/environments/webworker_sandbox.ts

7 lines
186 B
TypeScript
Raw Normal View History

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