UNPKG

@accounter/server

Version:

The test suite is split into three Vitest projects for efficiency and isolation:

11 lines (10 loc) 244 B
/** * INI.TXT file parsing utilities */ /** * Parses INI.TXT file content * * @param content - Raw INI.TXT file content * @returns Parsed data structure */ export declare function parseIniFile(_content: string): Record<string, unknown>;