UNPKG

@hexworks/cobalt-state

Version:

State machine utility for Cobalt.

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