UNPKG

@pujansrt/data-genie

Version:

High performant ETL engine written in TypeScript

7 lines (6 loc) 223 B
import { DataReader, DataRecord } from '../core/interfaces'; export declare class JsonReader implements DataReader { private filePath; constructor(filePath: string); read(): AsyncIterableIterator<DataRecord>; }