eve
Version:
Filesystem-first framework for durable backend AI agents that run anywhere.
11 lines (10 loc) • 465 B
TypeScript
export interface MaterializedAuthoredModuleIndex {
readonly fingerprint: string;
readonly instrumentation?: string;
readonly moduleMap: string;
readonly version: 2;
}
export declare function materializeAuthoredModules(input: {
readonly runtimeAppRoot: string;
}): Promise<MaterializedAuthoredModuleIndex>;
export declare function readMaterializedAuthoredModuleIndex(runtimeAppRoot: string): Promise<MaterializedAuthoredModuleIndex | undefined>;