Files
video-gen/video-gen-admin/node_modules/antd/lib/upload/Dragger.d.ts
T
2026-05-25 17:08:18 +08:00

12 lines
415 B
TypeScript

import * as React from 'react';
import type { UploadProps } from './interface';
import type { UploadRef } from './Upload';
export type DraggerProps<T = any> = UploadProps<T> & {
height?: number;
};
type DraggerType = (<T = any>(props: DraggerProps<T> & React.RefAttributes<UploadRef<T>>) => React.ReactElement | null) & {
displayName?: string;
};
declare const Dragger: DraggerType;
export default Dragger;