drugflow-molstar
Version:
Molstar implementation for DrugFlow
17 lines (16 loc) • 714 B
TypeScript
import { Model } from 'Molstar/mol-model/structure';
import { StructureElement } from 'Molstar/mol-model/structure/structure';
import { CustomModelProperty } from 'Molstar/mol-model-props/common/custom-model-property';
export { SIFTSMapping as SIFTSMapping };
interface SIFTSMappingMapping {
readonly dbName: string[];
readonly accession: string[];
readonly num: string[];
readonly residue: string[];
}
declare namespace SIFTSMapping {
const Provider: CustomModelProperty.Provider<{}, SIFTSMappingMapping>;
function isAvailable(model: Model): boolean;
function getKey(loc: StructureElement.Location): string;
function getLabel(loc: StructureElement.Location): string | undefined;
}