@mondaydotcomorg/atp-compiler
Version:
Production-ready compiler for transforming async iteration patterns into resumable operations with checkpoint-based state management
17 lines • 658 B
TypeScript
export * from './errors.js';
export * from './context.js';
export * from './checkpoint-manager.js';
export * from './resumable-loops.js';
export * from './resumable-arrays.js';
export * from './resumable-parallel.js';
export * from './batch-parallel.js';
export * from './runtime-functions.js';
import type { CacheProvider } from '@mondaydotcomorg/atp-protocol';
export interface InitializeRuntimeOptions {
executionId: string;
cache: CacheProvider;
checkpointPrefix?: string;
}
export declare function initializeRuntime(options: InitializeRuntimeOptions): void;
export declare function cleanupRuntime(): void;
//# sourceMappingURL=index.d.ts.map