Micro-CSV/index.d.ts

9 lines
242 B
TypeScript

type CSVOptions = {
skipBlanks?:boolean;
};
type CSVCallback = (headers:string[], line:string[], index:number) => boolean;
type CSVParser = (csv:string, onLine:CSVCallback, options?:CSVOptions)=>void;
export const { parseCSV:CSVParser }