UNPKG

synapse-react-client

Version:

[![Build Status](https://travis-ci.com/Sage-Bionetworks/Synapse-React-Client.svg?branch=main)](https://travis-ci.com/Sage-Bionetworks/Synapse-React-Client) [![npm version](https://badge.fury.io/js/synapse-react-client.svg)](https://badge.fury.io/js/synaps

14 lines (13 loc) 521 B
import { FunctionComponent } from 'react'; import { TooltipVisualProps } from '../ElementWithTooltip'; import { PlotProps, ClickCallbackParams } from './types'; export declare type ThemesPlotProps = { onPointClick: ({ facetValue, type, event }: ClickCallbackParams) => void; dotPlot: PlotProps; topBarPlot: PlotProps; sideBarPlot: PlotProps; tooltipProps?: TooltipVisualProps; dotPlotYAxisLabel?: string; }; declare const ThemesPlot: FunctionComponent<ThemesPlotProps>; export default ThemesPlot;