eve
Version:
Filesystem-first framework for durable backend AI agents that run anywhere.
10 lines (9 loc) • 359 B
TypeScript
interface BundlerPluginShape {
readonly enforce: "pre";
readonly name: string;
load?(id: string): string | null;
resolveId?(source: string): string | null;
}
/** Removes development-only lazy sandbox preparation from every hosted runtime bundle. */
export declare function createDevelopmentRuntimePrunePlugin(): BundlerPluginShape;
export {};