react-mutation-mapper
Version:
Generic Mutation Mapper
15 lines (14 loc) • 461 B
TypeScript
import * as React from 'react';
declare type DefaultLollipopPlotLegendProps = {
missenseColor?: string;
truncatingColor?: string;
inframeColor?: string;
spliceColor?: string;
fusionColor?: string;
otherColor?: string;
};
export default class DefaultLollipopPlotLegend extends React.Component<DefaultLollipopPlotLegendProps> {
static defaultProps: DefaultLollipopPlotLegendProps;
render(): JSX.Element;
}
export {};