@accounter/shaam6111-generator
Version:
Fully typed application that generates, parses, and validates SHAAM 6111 tax reports.
8 lines (7 loc) • 346 B
TypeScript
import { ValidationResult } from '../types/index.js';
/**
* Validates a SHAAM6111 report content string.
* @param content The raw content of the SHAAM6111 report as a string.
* @returns A ValidationResult object containing validation status and aggregated errors.
*/
export declare function validateReport(content: string): ValidationResult;