UNPKG

csv-sort

Version:

Sort double-entry bookkeeping CSV from internet banking

16 lines (13 loc) 401 B
declare function isNumeric(str: any): boolean; declare function findType(something: string): string; declare const version: string; interface Res { res: string[][]; msgContent: null | string; msgType: null | string; } /** * Sorts double-entry bookkeeping CSV coming from internet banking */ declare function sort(input: string): Res; export { type Res, findType, isNumeric, sort, version };