UNPKG

naive-ui

Version:

A Vue 3 Component Library. Fairly Complete, Theme Customizable, Uses TypeScript, Fast

4 lines (3 loc) 225 B
import type { TableBaseColumn } from './interface'; export type DataTableGetCsvCell = (value: any, rowData: object, column: TableBaseColumn) => string; export type DataTableGetCsvHeader = (column: TableBaseColumn) => string;