UNPKG

@hexworks/cobalt-state

Version:

State machine utility for Cobalt.

16 lines (15 loc) 348 B
import { z } from "zod"; export declare const ReportingData: z.ZodObject<{ id: z.ZodString; userId: z.ZodString; data: z.ZodString; }, "strip", z.ZodTypeAny, { data: string; id: string; userId: string; }, { data: string; id: string; userId: string; }>; export type ReportingData = z.infer<typeof ReportingData>;