• File: Parser.d.ts
  • Full Path: /var/www/nodejs/daily_store_reports_nodejs/node_modules/@fast-csv/parse/build/src/parser/Parser.d.ts
  • Date Modified: 02/04/2023 9:31 PM
  • File size: 447 bytes
  • MIME-type: text/x-java
  • Charset: utf-8
import { ParserOptions } from '../ParserOptions';
export interface ParseResult {
    line: string;
    rows: string[][];
}
export declare class Parser {
    private static removeBOM;
    private readonly parserOptions;
    private readonly rowParser;
    constructor(parserOptions: ParserOptions);
    parse(line: string, hasMoreData: boolean): ParseResult;
    private parseWithoutComments;
    private parseWithComments;
    private parseRow;
}