@vibe-validate/history
Version:
Validation history tracking via git notes for vibe-validate
18 lines • 683 B
TypeScript
/**
* Output truncation utilities
*
* v0.15.0: Truncation no longer needed - extractors handle it
* (MAX_ERRORS_IN_ARRAY = 10, output field removed from StepResult)
*/
import type { ValidationResult } from '@vibe-validate/core';
/**
* Truncate validation result output to max bytes
*
* v0.15.0: No-op function - extraction is already truncated by extractors
*
* @param result - Validation result
* @param _maxBytes - Unused (kept for backward compatibility)
* @returns Same validation result (no truncation needed)
*/
export declare function truncateValidationOutput(result: ValidationResult, _maxBytes?: number): ValidationResult;
//# sourceMappingURL=truncate.d.ts.map