Skip to content

Latest commit

 

History

History
65 lines (36 loc) · 1.35 KB

ICsvInputConfig.md

File metadata and controls

65 lines (36 loc) · 1.35 KB

datakit / ICsvInputConfig

Interface: ICsvInputConfig

Configuration for CSV deserialization.

Table of contents

Properties

Properties

columnNames

Optional columnNames: string[]

Optionally specifies the column names (when enabled, assumes that the header row is not read from the CSV data). Default: undefined

Defined in

index.ts:111


dynamicTyping

Optional dynamicTyping: boolean

Automatically pick types based on what the value looks like. Default: false.

Defined in

index.ts:117


parser

Optional parser: IColumnParserConfig

Configure parsing for named columns in the CSV data.

Defined in

index.ts:105


skipEmptyLines

Optional skipEmptyLines: boolean

Skip empty lines in the input. Default: true

Defined in

index.ts:123