transpiler.ts 389 B

123456789101112
  1. /**
  2. * Copyright (c) 2017-2021 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. import { Expression } from '../language/expression';
  8. export type Transpiler = (source: string) => Expression
  9. export const Transpiler = (source: string) => Expression;