@mondaydotcomorg/atp-compiler
Version:
Production-ready compiler for transforming async iteration patterns into resumable operations with checkpoint-based state management
14 lines • 908 B
TypeScript
export * from './types.js';
export * from './transformer/index.js';
export * from './runtime/index.js';
export * from './types/compiler-interface.js';
export * from './plugin-system/index.js';
export { ATPCompiler } from './transformer/index.js';
export { initializeRuntime, cleanupRuntime } from './runtime/index.js';
export { PluggableCompiler } from './plugin-system/pluggable-compiler.js';
export { PluginRegistry } from './plugin-system/plugin-api.js';
export { createDefaultCompiler } from './plugin-system/create-default-compiler.js';
export type { CompilerPlugin, DetectionPlugin, TransformationPlugin, OptimizerPlugin, ValidatorPlugin, PluginContext, BabelVisitor, } from './plugin-system/plugin-api.js';
export type { ATPCompilerLike } from './plugin-system/create-default-compiler.js';
export type { ICompiler, CacheStats } from './types/compiler-interface.js';
//# sourceMappingURL=index.d.ts.map