/** * Copyright (c) 2017 molio contributors, licensed under MIT, See LICENSE file for more info. * * @author David Sehnal */ 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