UNPKG

synapse-react-client

Version:

[![npm version](https://badge.fury.io/js/synapse-react-client.svg)](https://badge.fury.io/js/synapse-react-client) [![code style: prettier](https://img.shields.io/badge/code_style-prettier-ff69b4.svg?style=flat-square)](https://github.com/prettier/prettie

20 lines 876 B
import { AddToDownloadListRequest } from '@sage-bionetworks/synapse-client'; export type AddToDownloadListConfirmationAlertProps = { /** * The "AddToDownloadListRequest" that would be used to add items to the download list. */ addToDownloadListRequest: AddToDownloadListRequest; /** * Invoked when the dialog is closed, either by cancelling or successfully adding to the download list. */ onClose: () => void; }; /** * A component that displays a confirmation alert when adding multiple items to the download list though a container or * query. * @param props * @constructor */ declare function AddToDownloadListConfirmationAlert(props: AddToDownloadListConfirmationAlertProps): import("react/jsx-runtime").JSX.Element; export default AddToDownloadListConfirmationAlert; //# sourceMappingURL=AddToDownloadListConfirmationAlert.d.ts.map