chore: Function parameter name to camel case (#49435)

This commit is contained in:
Jeongseok Kang 2024-06-16 16:16:36 +09:00 committed by GitHub
parent 55a9a9d8cb
commit 4f3e381797
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -104,7 +104,7 @@ export interface UploadProps<T = any> extends Pick<RcUploadProps, 'capture' | 'h
accept?: string;
beforeUpload?: (
file: RcFile,
FileList: RcFile[],
fileList: RcFile[],
) => BeforeUploadValueType | Promise<BeforeUploadValueType>;
onChange?: (info: UploadChangeParam<UploadFile<T>>) => void;
onDrop?: (event: React.DragEvent<HTMLDivElement>) => void;