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