eve
Version:
Filesystem-first framework for durable backend AI agents that run anywhere.
8 lines (7 loc) • 322 B
TypeScript
/** Availability probes shared by built-in backend selectors. */
export interface DefaultSandboxProbes {
readonly isDeployedOnVercel: () => boolean;
readonly isDockerAvailable: () => boolean;
readonly isMicrosandboxSupported: () => boolean;
}
export declare const SANDBOX_BACKEND_PROBES: DefaultSandboxProbes;