UNPKG

eve

Version:

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

10 lines (9 loc) 457 B
export interface AuthoredModuleLoadOptions { readonly externalDependencies?: readonly string[]; } /** * Loads one authored module namespace from disk during compile-time * discovery. Concurrent loads of the same `modulePath` share a single * Promise so the underlying bundle/import pipeline runs once. */ export declare function loadAuthoredModuleNamespace(modulePath: string, options?: AuthoredModuleLoadOptions): Promise<Record<string, unknown>>;