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

14 lines 634 B
import React from 'react'; export type PlatformInstructionProps = { cavaticaConnectAccountURL?: string; }; type ExternalAnalysisPlatformDescription = { name: string; description: string; Logo: React.ComponentType<React.SVGProps<SVGSVGElement>>; PlatformInstructions?: React.ComponentType<PlatformInstructionProps>; }; export type ExternalAnalysisPlatform = 'cavatica' | 'terra' | 'adworkbench' | 'pluto' | 'plutodev'; export declare const EXTERNAL_ANALYSIS_PLATFORMS: Record<ExternalAnalysisPlatform, ExternalAnalysisPlatformDescription>; export {}; //# sourceMappingURL=ExternalAnalysisPlatformsConstants.d.ts.map