molstar
Version:
A comprehensive macromolecular library.
12 lines (11 loc) • 434 B
TypeScript
/**
* 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
*/
import { Expression } from '../language/expression';
export type Transpiler = (source: string) => Expression;
export declare const Transpiler: (source: string) => typeof Expression;