UNPKG

molstar

Version:

A comprehensive macromolecular library.

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