Files
parcer/mx-interpreter/index.ts

8 lines
296 B
TypeScript
Raw Normal View History

2024-06-12 20:05:43 +05:30
import Interpreter from './interpret';
export default Interpreter;
export { default as Preprocessor } from './preprocessor';
export type {
WorkflowFile, WhereWhatPair, Where, What,
} from './types/workflow';
export { unaryOperators, naryOperators, meta as metaOperators } from './types/logic';