/** * Copyright (c) 2019-2026 mol* contributors, licensed under MIT, See LICENSE file for more info. * * @author David Sehnal * @author Alexander Rose */ import { Tokens } from '../common/text/tokenizer.js'; export interface PdbFile { lines: Tokens; id?: string; variant: 'pdb' | 'pdbqt' | 'pqr'; }