eve
Version:
Filesystem-first framework for durable backend AI agents that run anywhere.
9 lines (8 loc) • 556 B
TypeScript
import { type CompiledModuleMap } from "#compiler/module-map.js";
import type { RuntimeDiskCompiledArtifactsSource } from "#runtime/compiled-artifacts-source.js";
/** Hydrates the compiled module map from the manifest’s authored bindings. */
export declare function loadCompiledModuleMapFromAuthoredSource(input: {
readonly compiledArtifactsSource: RuntimeDiskCompiledArtifactsSource;
/** Current location of a built application deployed with its source and dependencies. */
readonly authoredAppRoot?: string;
}): Promise<CompiledModuleMap>;