diff --git a/components/date-picker/generatePicker/interface.ts b/components/date-picker/generatePicker/interface.ts index ec3961929a..aa74c9a33f 100644 --- a/components/date-picker/generatePicker/interface.ts +++ b/components/date-picker/generatePicker/interface.ts @@ -86,6 +86,6 @@ export type PickerPropsWithMultiple< React.RefAttributes & { defaultValue?: ValueType | null; value?: ValueType | null; - onChange?: (date: ValueType, dates: string | string[]) => void; + onChange?: (date: ValueType, dateString: string | string[]) => void; onOk?: (date: ValueType) => void; };