UNPKG

eve

Version:

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

11 lines (10 loc) 567 B
import { z } from "#compiled/zod/index.js"; export declare const VercelProjectLinkSchema: z.ZodObject<{ projectId: z.ZodString; orgId: z.ZodString; projectName: z.ZodOptional<z.ZodString>; }, z.core.$strip>; /** Validated Vercel owner and project identifiers from `.vercel/project.json`. */ export type VercelProjectLink = z.infer<typeof VercelProjectLinkSchema>; /** Reads a validated Vercel project link without mutating local project state. */ export declare function readVercelProjectLink(projectPath: string): Promise<VercelProjectLink | undefined>;