/** * Copyright (c) 2018 Mol* contributors, licensed under MIT, See LICENSE file for more info. * * @author David Sehnal * @author Alexander Rose */ import { Expression } from '../language/expression.js'; export type Parser = (source: string) => Expression;