Skip to content

Commit

Permalink
[papaparse] add chunkSize to ParseConfig (#46280)
Browse files Browse the repository at this point in the history
  • Loading branch information
akshaybabloo committed Jul 26, 2020
1 parent 22fc794 commit 42b52c8
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions types/papaparse/index.d.ts
Expand Up @@ -111,6 +111,7 @@ export interface ParseConfig<T = any> {
fastMode?: boolean; // default: undefined
withCredentials?: boolean; // default: undefined
delimitersToGuess?: GuessableDelimiters[]; // default: [',', '\t', '|', ';', Papa.RECORD_SEP, Papa.UNIT_SEP]
chunkSize?: number; // default: undefined

// Callbacks
step?(results: ParseResult<T>, parser: Parser): void; // default: undefined
Expand Down

0 comments on commit 42b52c8

Please sign in to comment.