UNPKG

eve

Version:

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

8 lines (7 loc) 274 B
import { z } from "#compiled/zod/index.js"; export declare const HealthResultSchema: z.ZodObject<{ ok: z.ZodLiteral<true>; status: z.ZodLiteral<"ready">; workflowId: z.ZodString; }, z.core.$strict>; export type HealthResult = z.infer<typeof HealthResultSchema>;