@mondaydotcomorg/atp-compiler
Version:
Production-ready compiler for transforming async iteration patterns into resumable operations with checkpoint-based state management
19 lines • 702 B
TypeScript
/**
* Default Promise Transformer Plugin
* Wraps the existing PromiseTransformer
*/
import type { TransformationPlugin, BabelVisitor } from '../plugin-api.js';
import type { CompilerConfig, TransformMetadata } from '../../types.js';
export declare class DefaultPromiseTransformerPlugin implements TransformationPlugin {
name: string;
version: string;
priority: number;
private transformer;
constructor(enableBatchParallel?: boolean);
getVisitor(config: CompilerConfig): BabelVisitor;
getMetadata(): Partial<TransformMetadata>;
reset(): void;
private isPromiseAllCall;
private isPromiseAllSettledCall;
}
//# sourceMappingURL=promise-transformer-plugin.d.ts.map