mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-24 02:59:58 +08:00
c34caad24c
* test: js => ts * test: add test * fix: fix eslint error * test: add test case * fix: fix test error * fix: fix eslint error * fix: fix eslint error * fix: eslint error fix * fix: fallback eslint config & add test case * test: add all test case * fix: bugfix * fix: bugFix * fix: bugFix * fix: bugFix * fix: lint * fix: add React.createRef * fix: add breadcrumbName in Routes * fix: any commit for restart ci/cd * fix: remove type * fix: test fix * fix: test fix * fix: add ts-ignore for id * test: add Icon test case * test: remove ts-ignore * test: add Icon test case
16 lines
357 B
TypeScript
16 lines
357 B
TypeScript
import type { UploadProps } from '../interface';
|
|
|
|
export const successRequest: UploadProps['customRequest'] = ({ onSuccess, file }) => {
|
|
setTimeout(() => {
|
|
// @ts-ignore
|
|
onSuccess?.(null, file);
|
|
});
|
|
};
|
|
|
|
export const errorRequest: UploadProps['customRequest'] = ({ onError }) => {
|
|
setTimeout(() => {
|
|
// @ts-ignore
|
|
onError?.();
|
|
});
|
|
};
|