Skip to content

Commit

Permalink
fix(table) filterSearch TypeScript declaration (#34671)
Browse files Browse the repository at this point in the history
* fix: types declaration

* fix(table): filterSearch TypeScript declaration
  • Loading branch information
huangkairan committed Mar 23, 2022
1 parent 76cc520 commit d0be21e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/table/interface.tsx
Expand Up @@ -113,7 +113,7 @@ export interface ColumnType<RecordType> extends RcColumnType<RecordType> {
defaultFilteredValue?: FilterValue | null;
filterIcon?: React.ReactNode | ((filtered: boolean) => React.ReactNode);
filterMode?: 'menu' | 'tree';
filterSearch?: boolean;
filterSearch?: FilterSearchType;
onFilter?: (value: string | number | boolean, record: RecordType) => boolean;
filterDropdownVisible?: boolean;
onFilterDropdownVisibleChange?: (visible: boolean) => void;
Expand Down

0 comments on commit d0be21e

Please sign in to comment.