UNPKG

bai2-parser

Version:

Parse the bai2 statement file as CSV or JSON file

12 lines (10 loc) 285 B
type BAI2Options = { output?: 'JSON' | 'CSV'; }; declare namespace BAI2 { function fromString(fileString: string, options?: BAI2Options): any; } declare namespace BAI2 { function fromFile(filePath: string, options?: BAI2Options): any; } export { BAI2, type BAI2Options };