common.ts 337 B

1234567891011121314
  1. /**
  2. * Copyright (c) 2018 mol* contributors, licensed under MIT, See LICENSE file for more info.
  3. *
  4. * @author David Sehnal <david.sehnal@gmail.com>
  5. */
  6. import { mmCIF_Database as mmCIF } from 'mol-io/reader/cif/schema/mmcif'
  7. interface Entities {
  8. data: mmCIF['entity'],
  9. getEntityIndex(id: string): number
  10. }
  11. export { Entities }