eve
Version:
Filesystem-first framework for durable backend AI agents that run anywhere.
17 lines (16 loc) • 659 B
TypeScript
interface BundlerPluginShape {
readonly enforce?: "pre";
readonly name: string;
load?(id: string): string | null | undefined;
resolveId?(source: string, importer: string | undefined): string | {
id: string;
} | null | undefined;
}
/**
* Creates the bundler plugin that prunes the local sandbox providers
* (Docker, just-bash, microsandbox) from hosted Nitro server bundles.
* Stubs both the aggregate local facade and individual provider bindings so
* framework default selection cannot retain local engine implementations.
*/
export declare function createCompiledSandboxProviderPrunePlugin(): BundlerPluginShape;
export {};