UNPKG

molstar

Version:

A comprehensive macromolecular library.

15 lines 539 B
/** * Copyright (c) 2019 mol* contributors, licensed under MIT, See LICENSE file for more info. * * @author Alexander Rose <alexander.rose@weirdbyte.de> */ import { wwPDB_chemCompBond, wwPDB_chemCompAtom } from './providers/wwpdb'; export var attachModelProperties = function (args) { // return a list of promises that start attaching the props in parallel // (if there are downloads etc.) return [ wwPDB_chemCompBond(args), wwPDB_chemCompAtom(args) ]; }; //# sourceMappingURL=wwpdb.js.map