fix: fix confirm paramter ts type error (#29241)

This commit is contained in:
mumiao 2021-02-05 11:19:57 +08:00 committed by GitHub
parent 4ee9253467
commit b5d7670391
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -76,7 +76,7 @@ export interface FilterDropdownProps {
prefixCls: string;
setSelectedKeys: (selectedKeys: React.Key[]) => void;
selectedKeys: React.Key[];
confirm: (param: FilterConfirmProps) => void;
confirm: (param?: FilterConfirmProps) => void;
clearFilters?: () => void;
filters?: ColumnFilterItem[];
visible: boolean;