xsmiles
Version:
XSMILES is a JavaScript tool to visualize atom and non-atom attributions and SMILES strings through interactive coordinated visualizations.
32 lines • 874 B
TypeScript
import { Method } from "./molecule.types";
import { RawGradient } from "./gradient.types";
export declare type MoleculeViewsParamsToConfig = {
gradient?: RawGradient;
width?: number;
height?: number;
hideBarChart?: boolean;
theme?: string;
structureColor?: string;
colorsRange?: string[];
colorsDomain?: number[];
alphaRange?: number[];
background?: string;
smilesAlphaRange?: number[];
numerical?: boolean;
heatmap?: boolean;
method?: Method;
};
export declare type MoleculeViewsConfig = {
width: number;
height: number;
hideBarChart: boolean;
hideAttributesTable: boolean;
theme: string;
structureColor: string;
alphaRange: number[];
background: string;
smilesAlphaRange: number[];
numerical: boolean;
heatmap: boolean;
};
//# sourceMappingURL=moleculeViews.types.d.ts.map