* adding daisyui * adding daisy ui * switching to daisy ui * switching to daisy ui * adding daisy ui * adding daisy ui
12 lines
319 B
TypeScript
12 lines
319 B
TypeScript
import '@tanstack/react-table';
|
|
|
|
/* eslint-disable */
|
|
declare module '@tanstack/react-table' {
|
|
interface ColumnMeta<TData extends RowData, TValue> {
|
|
align?: 'text-left' | 'text-center' | 'text-right';
|
|
className?: string;
|
|
headerAlign?: 'text-left' | 'text-center' | 'text-right';
|
|
}
|
|
}
|
|
/* eslint-enable */
|