refactor: rename to maxun-core from mx-interpreter

This commit is contained in:
karishmas6
2024-07-31 20:40:14 +05:30
parent 30bfe50906
commit 30edc9a6ac
9 changed files with 1063 additions and 0 deletions

8
maxun-core/index.ts Normal file
View File

@@ -0,0 +1,8 @@
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';