UNPKG

caccl-api

Version:

A class that defines a set of smart Canvas endpoints that actually behave how you'd expect them to.

12 lines (11 loc) 293 B
/** * Parse a CSV string * @author Gabe Abrams * @param csvString The CSV string to parse * @returns an array of objects representing the parsed CSV data */ declare const parseCSV: (csvString: string) => Promise<{ headers: string[]; rows: string[][]; }>; export default parseCSV;