Skip to content

ExportFormat

Since v0.1.1

Supported export file formats.

FormatOutputNotes
'csv'Comma-separated values (.csv)Plain text, universally supported. Large datasets export fast.
'excel'Excel workbook (.xlsx)Preserves column types and headers. Requires a serializer that can produce OOXML.
'json'JSON array (.json)Exports row objects as-is; useful for programmatic consumption or re-import.
type ExportFormat = "csv" | "excel" | "json"