csv-sort
Version:
Sort double-entry bookkeeping CSV from internet banking
17 lines (14 loc) • 412 B
TypeScript
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 { findType, isNumeric, sort, version };
export type { Res };