UNPKG

molstar

Version:

A comprehensive macromolecular library.

20 lines (19 loc) 607 B
/** * Copyright (c) 2018 - 2019 mol* contributors, licensed under MIT, See LICENSE file for more info. * * @author David Sehnal <david.sehnal@gmail.com> */ /// <reference types="react" /> import { State } from '../../mol-state'; import { PluginUIComponent } from '../base'; export declare class StateObjectActions extends PluginUIComponent<{ state: State; nodeRef: string; hideHeader?: boolean; initiallyCollapsed?: boolean; alwaysExpandFirst?: boolean; }> { get current(): State.ObjectEvent; componentDidMount(): void; render(): JSX.Element | null; }