@mondaydotcomorg/atp-runtime
Version:
Runtime SDK injected into sandbox for Agent Tool Protocol
19 lines • 558 B
TypeScript
import type { ProgressCallback } from './types.js';
export type { ProgressCallback } from './types.js';
/**
* Set the progress callback handler
*/
export declare function setProgressCallback(callback: ProgressCallback | null): void;
/**
* Progress Runtime API
*
* Allows reporting execution progress to clients
*/
declare class ProgressAPI {
/**
* Report progress with message and completion fraction
*/
report(message: string, fraction: number): void;
}
export declare const progress: ProgressAPI;
//# sourceMappingURL=index.d.ts.map