UNPKG

@hexworks/cobalt-state

Version:

State machine utility for Cobalt.

13 lines (12 loc) 277 B
import { z } from "zod"; export declare const BaseState: z.ZodObject<{ id: z.ZodString; userId: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; userId: string; }, { id: string; userId: string; }>; export type BaseState = z.infer<typeof BaseState>;