您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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. }