ItemActions.d.ts 472 B

123456789101112131415
  1. import { FC, ReactNode } from "react";
  2. import { UploadFile } from "antd/es/upload/interface";
  3. export interface DageUploadItemActionsProps {
  4. file: UploadFile;
  5. actions: {
  6. preview: () => void;
  7. remove: () => void;
  8. };
  9. isPictureCard?: boolean;
  10. disabled?: boolean;
  11. downloadErrorMessage: string;
  12. children: ReactNode;
  13. }
  14. export declare const DageUploadItemActions: FC<DageUploadItemActionsProps>;
  15. //# sourceMappingURL=ItemActions.d.ts.map