UNPKG

alepha

Version:

Easy-to-use modern TypeScript framework for building many kind of applications.

8 lines (5 loc) 199 B
import { type Static, z } from "alepha"; export const triggerJobSchema = z.object({ payload: z.record(z.text(), z.any()).optional(), }); export type TriggerJob = Static<typeof triggerJobSchema>;