xsmiles
Version:
XSMILES is a JavaScript tool to visualize atom and non-atom attributions and SMILES strings through interactive coordinated visualizations.
20 lines • 887 B
TypeScript
import { DomainByModelHash, ProcessedMoleculeFromJson } from "../../types/molecule.types";
import { ColorDomainType, StructureColorMode } from "../../types/app.types";
import React from "react";
import { GradientConfig } from "../../types/gradient.types";
import { DrawerType } from "../../types/drawer.interface";
declare type Props = {
molecule: ProcessedMoleculeFromJson;
structureColorMode: StructureColorMode;
colorDomainType: ColorDomainType;
scoresDomainByModel: DomainByModelHash;
globalScoresDomain: number[];
gradientConfig: GradientConfig;
drawerType: DrawerType;
bondLength: number;
showScoresOnStructure: boolean;
};
declare function MethodsComparisonRow(props: Props): JSX.Element | null;
declare const _default: React.MemoExoticComponent<typeof MethodsComparisonRow>;
export default _default;
//# sourceMappingURL=ComparisonRow.d.ts.map