UNPKG

molstar

Version:

A comprehensive macromolecular library.

12 lines (11 loc) 494 B
/** * Copyright (c) 2025 mol* contributors, licensed under MIT, See LICENSE file for more info. * * @author David Sehnal <david.sehnal@gmail.com> */ import { CifFile } from '../../mol-io/reader/cif'; import { ReaderResult } from '../../mol-io/reader/result'; import { Task } from '../../mol-task'; import { JSONCifFile } from './model'; export declare function parseJSONCif(data: JSONCifFile): CifFile; export declare function parseJSONCifString(data: string): Task<ReaderResult<CifFile>>;