@accounter/server
Version:
Accounter GraphQL server
8 lines (7 loc) • 400 B
TypeScript
import { ReportData } from '../types/report-data.js';
/**
* Generates a full report string for the SHAAM 6111 specification.
* @param reportData The ReportData object containing all sections of the report.
* @returns A string formatted according to the SHAAM 6111 specification, 8612 characters long.
*/
export declare function generateReport(reportData: ReportData, validate?: boolean): string;