molstar
Version:
A comprehensive macromolecular library.
28 lines (27 loc) • 853 B
TypeScript
/**
* Copyright (c) 2020 mol* contributors, licensed under MIT, See LICENSE file for more info.
*
* @author David Sehnal <david.sehnal@gmail.com>
*/
/// <reference types="react" />
import { CollapsableControls, CollapsableState } from '../../mol-plugin-ui/base';
import { Mp4Controls } from './controls';
interface State {
busy?: boolean;
data?: {
movie: Uint8Array;
filename: string;
};
}
export declare class Mp4EncoderUI extends CollapsableControls<{}, State> {
private _controls;
get controls(): Mp4Controls;
protected defaultState(): State & CollapsableState;
private downloadControls;
protected renderControls(): JSX.Element | null;
componentDidMount(): void;
componentWillUnmount(): void;
save: () => void;
generate: () => Promise<void>;
}
export {};