molstar
Version:
A comprehensive macromolecular library.
21 lines (20 loc) • 862 B
TypeScript
/**
* Copyright (c) 2018-2025 mol* contributors, licensed under MIT, See LICENSE file for more info.
*
* @author David Sehnal <david.sehnal@gmail.com>
* @author Alexander Rose <alexander.rose@weirdbyte.de>
*/
import { DensityServer_Data_Database } from '../../mol-io/reader/cif/schema/density-server.js';
import { Volume } from '../../mol-model/volume.js';
import { Task } from '../../mol-task/index.js';
import { ModelFormat } from '../format.js';
export declare function volumeFromDensityServerData(source: DensityServer_Data_Database, params?: Partial<{
label: string;
entryId: string;
}>): Task<Volume>;
export { DscifFormat };
type DscifFormat = ModelFormat<DensityServer_Data_Database>;
declare namespace DscifFormat {
function is(x?: ModelFormat): x is DscifFormat;
function create(dscif: DensityServer_Data_Database): DscifFormat;
}