//#region ../@warlock.js/seal/src/types/result-types.d.ts /** * Validation result */ type ValidationResult = { /** Whether validation passed */isValid: boolean; /** Validated and potentially mutated data */ data: any; /** List of validation errors */ errors: { /** Rule type that failed */type: string; /** Error message */ error: string; /** Input field name */ input: string; }[]; }; //#endregion export { ValidationResult }; //# sourceMappingURL=result-types.d.mts.map