Skip to content

Type Alias: CsvSource

ts
type CsvSource = 
  | string
  | Iterable<string | Uint8Array>
  | AsyncIterable<string | Uint8Array>
| ReadableStream<string | Uint8Array>;

Defined in: types.ts:199

Input the streaming parser accepts: text, chunks, or a byte or text stream.

Released under the MIT License.