eve
Version:
Filesystem-first framework for durable backend AI agents that run anywhere.
10 lines • 461 B
TypeScript
/**
* Lazy loader for getPort that prevents bundlers (Turbopack, esbuild)
* from statically tracing @workflow/utils/get-port and its filesystem
* operations (readdir, readFile, readlink) into the flow route bundle.
*
* Uses createRequire with a dynamically constructed specifier so the
* dependency is invisible to bundler static analysis.
*/
export declare function getPortLazy(): Promise<number | undefined>;
//# sourceMappingURL=get-port-lazy.d.ts.map