molstar
Version:
A comprehensive macromolecular library.
15 lines (14 loc) • 503 B
JavaScript
/**
* Copyright (c) 2017-2022 mol* contributors, licensed under MIT, See LICENSE file for more info.
*
* @author David Sehnal <david.sehnal@gmail.com>
* @author Panagiotis Tourlas <panagiot_tourlov@hotmail.com>
*
* Adapted from MolQL project
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.Transpiler = void 0;
const expression_1 = require("../language/expression");
const Transpiler = (source) => expression_1.Expression;
exports.Transpiler = Transpiler;
;