| 123456789101112131415 |
- import { FC, ReactNode } from "react";
- import { UploadFile } from "antd/es/upload/interface";
- export interface DageUploadItemActionsProps {
- file: UploadFile;
- actions: {
- preview: () => void;
- remove: () => void;
- };
- isPictureCard?: boolean;
- disabled?: boolean;
- downloadErrorMessage: string;
- children: ReactNode;
- }
- export declare const DageUploadItemActions: FC<DageUploadItemActionsProps>;
- //# sourceMappingURL=ItemActions.d.ts.map
|