react-mutation-mapper
Version:
Generic Mutation Mapper
16 lines (15 loc) • 411 B
TypeScript
export declare enum DataFilterType {
ONCOKB = "oncokb",
HOTSPOT = "hotspot",
POSITION = "position",
MUTATION = "mutation",
CANCER_TYPE = "cancerType",
PROTEIN_IMPACT_TYPE = "proteinImpactType",
MUTATION_STATUS = "mutationStatus",
PROTEIN_CHANGE = "proteinChange"
}
export declare type DataFilter<T = any> = {
id?: string;
type: string;
values: T[];
};