11 lines
283 B
TypeScript
11 lines
283 B
TypeScript
import '@tanstack/react-table'
|
|
|
|
declare module '@tanstack/react-table' {
|
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
interface ColumnMeta<TData, TValue> {
|
|
className?: string // apply to both th and td
|
|
tdClassName?: string
|
|
thClassName?: string
|
|
}
|
|
}
|