@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) • 525 B
TypeScript
/**
* Main API for generating SHAAM uniform format reports
*/
import type { GenerationOptions, ReportInput, ReportOutput } from '../types/index.js';
/**
* Generates SHAAM uniform format report files (INI.TXT and BKMVDATA.TXT)
* from a high-level JSON input object.
*
* @param input - The report input data
* @param options - Generation options
* @returns Generated SHAAM format files and metadata
*/
export declare function generateUniformFormatReport(input: ReportInput, options?: GenerationOptions): ReportOutput;