fix: AutoComplete dataSource prop type error (#27870)

Co-authored-by: jingjing.ye <jingjing.ye@datayes.com>
This commit is contained in:
ElsaOOo 2020-11-20 09:33:35 +08:00 committed by GitHub
parent b3d0f1d2c6
commit c7d591e9ab
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -20,7 +20,7 @@ export interface DataSourceItemObject {
value: string;
text: string;
}
export type DataSourceItemType = string | DataSourceItemObject;
export type DataSourceItemType = string | DataSourceItemObject | React.ReactNode;
export interface AutoCompleteProps
extends Omit<