UNPKG

eve

Version:

Filesystem-first framework for durable backend AI agents that run anywhere.

14 lines (13 loc) 653 B
/** * Removes stale microsandbox template metadata directories (and their * captured snapshots) for one application. */ export declare function pruneMicrosandboxTemplates(input: { readonly appRoot: string; readonly now?: number; readonly recentWindowMs?: number; readonly retainCount?: number; }): Promise<void>; export declare function resolveMicrosandboxTemplateRootPath(cacheDirectory: string, templateKey: string): string; export declare function resolveMicrosandboxTemplatesDirectory(cacheDirectory: string): string; export declare function resolveMicrosandboxSessionRootPath(cacheDirectory: string, sessionKey: string): string;