UNPKG

@battle-racing/br-common-lib

Version:

Common library for all Battle Racing Repositorios

15 lines (14 loc) 548 B
import { z } from 'zod'; export declare const arithmeticOperatorSchema: z.ZodEnum<{ "+": "+"; "-": "-"; "*": "*"; "/": "/"; }>; export declare const simpleArithmeticStringSchema: z.ZodString; export declare const kartContextVariableSchema: z.ZodEnum<{ "$kart.configuredSpeed": "$kart.configuredSpeed"; "$kart.powerUpTime": "$kart.powerUpTime"; }>; export declare const contextArithmeticStringSchema: z.ZodString; export declare const arithmeticExpressionSchema: z.ZodUnion<readonly [z.ZodNumber, z.ZodString, z.ZodString]>;