data-format.ts 335 B

1234567891011121314
  1. /**
  2. * Copyright (c) 2017 molio contributors, licensed under MIT, See LICENSE file for more info.
  3. *
  4. * @author David Sehnal <david.sehnal@gmail.com>
  5. */
  6. import { Frame as mmCIF_Frame } from 'mol-io/reader/cif/schema/mmcif'
  7. export interface mmCIF { kind: 'mmCIF', data: mmCIF_Frame }
  8. type Format =
  9. | mmCIF
  10. export default Format