synapse-react-client
Version:
[](https://badge.fury.io/js/synapse-react-client) [](https://github.com/prettier/prettie
20 lines • 876 B
TypeScript
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