UNPKG

molstar

Version:

A comprehensive macromolecular library.

13 lines (12 loc) 365 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 { Tokens } from '../common/text/tokenizer'; export interface PdbFile { lines: Tokens; id?: string; isPdbqt?: boolean; }