UNPKG

react-mutation-mapper

Version:
17 lines (16 loc) 449 B
import { Mutation } from 'cbioportal-utils'; import * as React from 'react'; declare type MutationTypeProps = { mutation: Mutation; }; declare type MutationTypeFormat = { label?: string; className: string; }; export declare const MAIN_MUTATION_TYPE_MAP: { [key: string]: MutationTypeFormat; }; export default class MutationType extends React.Component<MutationTypeProps, {}> { render(): JSX.Element; } export {};