initial commit

This commit is contained in:
2024-07-07 00:48:39 +02:00
commit cc7d7d71b9
49 changed files with 3017 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
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
}
}