mirror of
https://github.com/ershisan99/db-studio.git
synced 2025-12-18 05:09:27 +00:00
9 lines
227 B
TypeScript
9 lines
227 B
TypeScript
import { RowData } from '@tanstack/react-table'
|
|
|
|
declare module '@tanstack/table-core' {
|
|
// @ts-expect-error - this is a global module augmentation
|
|
interface ColumnMeta<TData extends RowData> {
|
|
className?: string
|
|
}
|
|
}
|