UNPKG

molstar

Version:

A comprehensive macromolecular library.

12 lines (11 loc) 555 B
/** * Copyright (c) 2017-2018 mol* contributors, licensed under MIT, See LICENSE file for more info. * * @author Alexander Rose <alexander.rose@weirdbyte.de> */ import { Database, Column } from './schema'; import { CifFrame } from '../../../mol-io/reader/cif/data-model'; export declare function getFieldType(type: string, description: string, values?: string[], container?: string): Column; declare type Imports = Map<string, CifFrame[]>; export declare function generateSchema(frames: CifFrame[], imports?: Imports): Database; export {};