[TS] AutoComplete : Make dataSource optional (#10077)

When using children :
https://ant.design/components/auto-complete/#components-auto-complete-demo-options
pull/10081/head
Pierre 7 years ago committed by Wei Zhu
parent e5030dfa64
commit 09fec16b6f

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

Loading…
Cancel
Save