unlink user

This commit is contained in:
2025-11-12 15:50:05 -03:00
parent 850f620f78
commit 707b1f5012
9 changed files with 155 additions and 22 deletions

View File

@@ -0,0 +1,11 @@
import '@tanstack/react-table'
declare module '@tanstack/react-table' {
interface ColumnMeta<TData extends unknown, TValue> {
className?: string
}
interface TableMeta<TData extends unknown> {
removeRow?: (rowId: string) => void
}
}