transpiler.ts 422 B

1234567891011121314
  1. /**
  2. * Copyright (c) 2017-2022 mol* contributors, licensed under MIT, See LICENSE file for more info.
  3. *
  4. * @author David Sehnal <david.sehnal@gmail.com>
  5. * @author Panagiotis Tourlas <panagiot_tourlov@hotmail.com>
  6. *
  7. * Adapted from MolQL project
  8. */
  9. import { Expression } from '../language/expression';
  10. export type Transpiler = (source: string) => Expression
  11. export const Transpiler = (source: string) => Expression;