chore(components): [upload] remove redundant rawFile parameter from TS (#22295)

This commit is contained in:
Zhong
2025-09-24 18:10:33 +08:00
committed by GitHub
parent f49fcbc3b2
commit cfdf97ae19

View File

@@ -19,9 +19,7 @@ export const uploadContentProps = buildProps({
default: NOOP,
},
onRemove: {
type: definePropType<
(file: UploadFile | UploadRawFile, rawFile?: UploadRawFile) => void
>(Function),
type: definePropType<(file: UploadFile | UploadRawFile) => void>(Function),
default: NOOP,
},
onStart: {