UNPKG

molstar

Version:

A comprehensive macromolecular library.

20 lines (19 loc) 858 B
/** * Copyright (c) 2019 mol* contributors, licensed under MIT, See LICENSE file for more info. * * @author David Sehnal <david.sehnal@gmail.com> */ /// <reference types="react" /> import { PluginUIComponent } from '../base'; import { StateTransformParameters } from '../state/common'; import { ParamOnChange } from '../controls/parameters'; import { Grid } from '../../mol-model/volume'; export declare class VolumeStreamingCustomControls extends PluginUIComponent<StateTransformParameters.Props> { private areInitial; private newParams; changeIso: (name: string, value: number, isRelative: boolean) => void; changeParams: (name: string, param: string, value: any) => void; convert(channel: any, stats: Grid['stats'], isRelative: boolean): any; changeOption: ParamOnChange; render(): JSX.Element | null; }