eve
Version:
Filesystem-first framework for durable backend AI agents that run anywhere.
9 lines (8 loc) • 340 B
TypeScript
export type HostHttpMethod = "ALL" | "GET" | "POST";
export interface HostHttpRegistration {
readonly capability: "workflow" | "development" | "schedule";
readonly method: HostHttpMethod;
readonly path: string;
readonly reservationOnly?: boolean;
}
export declare const HOST_HTTP_INVENTORY: readonly HostHttpRegistration[];