UNPKG

tlojs

Version:

The Last One - The last npm package you'll need to install

7 lines (6 loc) 204 B
import { TableLoader } from "../loader"; import { Table } from "../table"; export declare class CsvLoader<T> implements TableLoader<T, string> { load(data: string): Table<T>; private parseCell; }