UNPKG

molstar

Version:

A comprehensive macromolecular library.

13 lines (12 loc) 511 B
/** * Copyright (c) 2020 mol* contributors, licensed under MIT, See LICENSE file for more info. * * @author David Sehnal <david.sehnal@gmail.com> */ import { Task } from '../../mol-task'; import { ModelFormat } from '../format'; import { CubeFile } from '../../mol-io/reader/cube/parser'; import { Trajectory } from '../../mol-model/structure'; export { CubeFormat }; declare type CubeFormat = ModelFormat<CubeFile>; export declare function trajectoryFromCube(cube: CubeFile): Task<Trajectory>;