chore: fix separator prop type

This commit is contained in:
aalizzwell 2022-10-03 16:42:28 +08:00
parent f9906c4844
commit 6f693c245f
1 changed files with 2 additions and 2 deletions

View File

@ -93,7 +93,7 @@ export const comboListProps = {
*
* `,`
*/
separator: Type({default: ',', type: Boolean}),
separator: Type({default: ',', type: String}),
};
export type ComboListProps = ExtractPropTypes<typeof comboListProps>;