fix table filter type (#3193)

* fix table filter type

* 'fix'

* update
This commit is contained in:
ImJoeHs 2016-09-28 19:56:12 +08:00 committed by 偏右
parent 1b906407d3
commit ea5386994d

View File

@ -48,7 +48,7 @@ export interface TableColumnConfig {
key?: string;
dataIndex?: string;
render?: (text: any, record: Object, index: number) => React.ReactNode;
filters?: string[];
filters?: { text: string; value: string }[];
onFilter?: (value: any, record: Object) => boolean;
filterMultiple?: boolean;
filterDropdown?: React.ReactNode;