import { importProxy } from "./importProxy"; import type { Ctx } from "./Ctx"; /** * https://docs.evt.land/api/evt/newctx * * return a new Ctx instance * */ export function newCtx(): Ctx{ return new importProxy.Ctx(); }