UNPKG

molstar

Version:

A comprehensive macromolecular library.

12 lines (11 loc) 520 B
/** * Copyright (c) 2019-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 { PdbFile } from './schema.js'; import { Task } from '../../../mol-task/index.js'; import { ReaderResult } from '../result.js'; import { StringLike } from '../../common/string-like.js'; export declare function parsePDB(data: StringLike, id?: string, isPdbqt?: boolean): Task<ReaderResult<PdbFile>>;