Skip to content

Interface: ExportConfig\<TRow\>

Defined in: src/model/types.ts:305

Configures CSV/XLSX export.

Type Parameters

TRow

TRow = unknown

Properties

filename?

optional filename?: string

Defined in: src/model/types.ts:309

Default filename without extension.


formats?

optional formats?: ("csv" | "xlsx")[]

Defined in: src/model/types.ts:307

Enabled export formats.


formatters?

optional formatters?: Record<string, (value, row) => string>

Defined in: src/model/types.ts:311

Custom value formatters by column id.