synapse-react-client
Version:
[](https://travis-ci.com/Sage-Bionetworks/Synapse-React-Client) [](https://badge.fury.io/js/synaps
13 lines (12 loc) • 574 B
TypeScript
import * as React from 'react';
import { QueryPerFacetPlotsCardProps } from './QueryPerFacetPlotsCard';
import { SingleQueryFacetPlotsCardsProps } from './SingleQueryFacetPlotsCards';
export declare type QueryFacetPlotsCardsProps = QueryPerFacetPlotsCardProps | SingleQueryFacetPlotsCardsProps;
export declare type FeaturedDataPlotsProps = {
configs: QueryFacetPlotsCardsProps[];
rgbIndex?: number;
sql?: string;
explorePagePath?: string;
};
declare const FeaturedDataPlots: React.FunctionComponent<FeaturedDataPlotsProps>;
export default FeaturedDataPlots;