molstar
Version:
A comprehensive macromolecular library.
12 lines (11 loc) • 414 B
TypeScript
/**
* Copyright (c) 2025 mol* contributors, licensed under MIT, See LICENSE file for more info.
*
* @author David Sehnal <david.sehnal@gmail.com>
*/
import { Structure } from '../../mol-model/structure';
export declare function molfileToJSONCif(molfile: string): Promise<{
structure: Structure;
molfile: import("../../mol-io/reader/mol/parser").MolFile;
jsoncif: import("./model").JSONCifFile;
}>;