fix(AutoComplete): add missing backfill prop in type

This commit is contained in:
ryannz 2018-06-14 14:45:46 +08:00 committed by 偏右
parent 07e06709f8
commit a5ff8e5de0

View File

@ -26,6 +26,7 @@ export interface AutoCompleteProps extends AbstractSelectProps {
value?: SelectValue;
defaultValue?: SelectValue;
dataSource?: DataSourceItemType[];
backfill?: boolean;
optionLabelProp?: string;
onChange?: (value: SelectValue) => void;
onSelect?: (value: SelectValue, option: Object) => any;