UNPKG

@battle-racing/br-common-lib

Version:

Common library for all Battle Racing Repositorios

12 lines (11 loc) 383 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.flowSchema = void 0; const zod_1 = require("zod"); const command_1 = require("../command"); exports.flowSchema = zod_1.z.object({ id: zod_1.z.number(), name: zod_1.z.string(), description: zod_1.z.string().optional(), commands: zod_1.z.array(command_1.allCommandsConfigSchema), });