schema.ts 353 B

1234567891011121314
  1. /**
  2. * Copyright (c) 2019-2020 mol* contributors, licensed under MIT, See LICENSE file for more info.
  3. *
  4. * @author David Sehnal <david.sehnal@gmail.com>
  5. * @author Alexander Rose <alexander.rose@weirdbyte.de>
  6. */
  7. import { Tokens } from '../common/text/tokenizer';
  8. export interface PdbFile {
  9. lines: Tokens
  10. id?: string,
  11. isPdbqt?: boolean,
  12. }