react-mutation-mapper
Version:
Generic Mutation Mapper
13 lines (12 loc) • 455 B
TypeScript
import { Mutation } from 'cbioportal-utils';
import * as React from 'react';
declare type ProteinChangeProps = {
mutation: Mutation;
enableMutationStatusIndicator?: boolean;
};
export declare function proteinChangeSortMethod(a: string, b: string): number;
export default class ProteinChange extends React.Component<ProteinChangeProps, {}> {
static defaultProps: Partial<ProteinChangeProps>;
render(): JSX.Element;
}
export {};