molstar
Version:
A comprehensive macromolecular library.
22 lines (21 loc) • 776 B
TypeScript
/**
* Copyright (c) 2019-2025 mol* contributors, licensed under MIT, See LICENSE file for more info.
*
* @author Alexander Rose <alexander.rose@weirdbyte.de>
*/
import { Volume } from '../../mol-model/volume.js';
import { Task } from '../../mol-task/index.js';
import { Vec3 } from '../../mol-math/linear-algebra.js';
import { Dsn6File } from '../../mol-io/reader/dsn6/schema.js';
import { ModelFormat } from '../format.js';
export declare function volumeFromDsn6(source: Dsn6File, params?: {
voxelSize?: Vec3;
label?: string;
entryId?: string;
}): Task<Volume>;
export { Dsn6Format };
type Dsn6Format = ModelFormat<Dsn6File>;
declare namespace Dsn6Format {
function is(x?: ModelFormat): x is Dsn6Format;
function create(dsn6: Dsn6File): Dsn6Format;
}