react-mutation-mapper
Version:
Generic Mutation Mapper
11 lines (10 loc) • 360 B
TypeScript
import { Mutation } from 'cbioportal-ts-api-client';
import * as React from 'react';
import { AxisScale } from './AxisScaleSwitch';
interface ILollipopTooltipCountInfoProps {
count: number;
mutations?: Mutation[];
axisMode?: AxisScale;
}
export declare const LollipopTooltipCountInfo: React.FC<ILollipopTooltipCountInfoProps>;
export {};