Variable expressionValidationSchemaConst
expressionValidationSchema: ZodObject<
{
error: ZodOptional<ZodString>;
findings: ZodOptional<
ZodArray<
ZodRecord<ZodString, ZodType<{} | null, ZodTypeDef, {} | null>>,
"many",
>,
>;
ok: ZodBoolean;
symbols: ZodOptional<
ZodArray<
ZodRecord<ZodString, ZodType<{} | null, ZodTypeDef, {} | null>>,
"many",
>,
>;
valid: ZodOptional<ZodBoolean>;
warnings: ZodOptional<ZodArray<ZodString, "many">>;
},
"strip",
ZodTypeAny,
{
error?: string;
findings?: Record<string, {} | null>[];
ok: boolean;
symbols?: Record<string, {} | null>[];
valid?: boolean;
warnings?: string[];
},
{
error?: string;
findings?: Record<string, {} | null>[];
ok: boolean;
symbols?: Record<string, {} | null>[];
valid?: boolean;
warnings?: string[];
},
> = ...
Runtime validator for ExpressionValidation.