You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

typings.d.ts 239B

12345678910111213
  1. import '@tanstack/react-table';
  2. declare module 'lodash';
  3. declare global {
  4. type Nullable<T> = T | null;
  5. }
  6. declare module '@tanstack/react-table' {
  7. interface ColumnMeta {
  8. headerClassName?: string;
  9. cellClassName?: string;
  10. }
  11. }