chore: type in PickerPropsWithMultiple type: rename 'dates' to 'dateString' in onChange parameter. (#47343)

Co-authored-by: 김재훈 <kimjaehoon@olenjikollaui-MacBookPro.local>
This commit is contained in:
jaehoonkim-dev 2024-02-05 14:25:50 +09:00 committed by GitHub
parent 7104513a84
commit a8d951f04a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -86,6 +86,6 @@ export type PickerPropsWithMultiple<
React.RefAttributes<PickerRef> & { React.RefAttributes<PickerRef> & {
defaultValue?: ValueType | null; defaultValue?: ValueType | null;
value?: ValueType | null; value?: ValueType | null;
onChange?: (date: ValueType, dates: string | string[]) => void; onChange?: (date: ValueType, dateString: string | string[]) => void;
onOk?: (date: ValueType) => void; onOk?: (date: ValueType) => void;
}; };