UNPKG

tui-grid

Version:

TOAST UI Grid : Powerful data grid control supported by TOAST UI

17 lines (14 loc) 386 B
export interface OptExport { includeHeader?: boolean; includeHiddenColumns?: boolean; onlySelected?: boolean; onlyFiltered?: boolean; columnNames?: string[]; delimiter?: ',' | ';' | '\t' | '|'; fileName?: string; useFormattedValue?: boolean; } export type ExportFormat = 'txt' | 'csv' | 'xlsx' | 'xls'; export interface Exports { excelCompatibilityMode?: boolean; }