@accounter/server
Version:
Accounter GraphQL server
8 lines (7 loc) • 325 B
TypeScript
import { ReportData } from '../types/index.js';
/**
* Parses a SHAAM6111 report content string into a structured ReportData object
* @param content - The raw content of the SHAAM6111 report
* @returns A structured ReportData object
*/
export declare function parseReport(content: string, validate?: boolean): ReportData;