@accounter/shaam-uniform-format-generator
Version:
Fully typed application that generates, parses, and validates SHAAM uniform format tax reports (INI.TXT and BKMVDATA.TXT).
14 lines (13 loc) • 472 B
text/typescript
/**
* API for parsing SHAAM uniform format files
*/
import type { ReportInput } from '../types/index.cjs';
/**
* Parses SHAAM uniform format files (INI.TXT and BKMVDATA.TXT)
* back into structured JSON objects.
*
* @param iniContent - Content of the INI.TXT file
* @param dataContent - Content of the BKMVDATA.TXT file
* @returns Parsed report input data
*/
export declare function parseUniformFormatFiles(_iniContent: string, _dataContent: string): ReportInput;