synapse-react-client
Version:
[](https://travis-ci.com/Sage-Bionetworks/Synapse-React-Client) [](https://badge.fury.io/js/synaps
15 lines (14 loc) • 620 B
TypeScript
import * as React from 'react';
import { QueryResultBundle, QueryBundleRequest } from '../../../utils/synapseTypes';
export declare const DOWNLOAD_OPTIONS_CONTAINER_CLASS = "SRC-download-options-container";
declare type DownloadOptionsProps = {
onDownloadFiles: () => void;
isUnauthenticated?: boolean;
isFileView?: boolean;
darkTheme?: boolean;
queryResultBundle?: QueryResultBundle;
queryBundleRequest: QueryBundleRequest;
};
export declare const DOWNLOAD_FILES_MENU_TEXT = "Add To Download List";
export declare const DownloadOptions: React.FunctionComponent<DownloadOptionsProps>;
export {};