UNPKG

@battle-racing/br-common-lib

Version:

Common library for all Battle Racing Repositorios

10 lines (8 loc) 243 B
import { z } from 'zod'; import { allCommandsConfigSchema } from '../command'; export const flowSchema = z.object({ id: z.number(), name: z.string(), description: z.string().optional(), commands: z.array(allCommandsConfigSchema), });