Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
WIKIPEDIA
/
nodejs
/
daily_store_reports_nodejs
/
node_modules
/
@fast-csv
/
parse
/
build
/
src
/
parser
:
Parser.d.ts
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
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; }