/** * Autonomi SDK - Run Management * * Run-related operations. These are implemented as methods on AutonomiClient * directly (see client.ts). This module re-exports the relevant types and * documents the run management interface for reference. * * Run methods on AutonomiClient: * - listRuns(projectId?, status?): Promise * - getRun(runId): Promise * - cancelRun(runId): Promise * - replayRun(runId): Promise * - getRunTimeline(runId): Promise */ export type { Run, RunEvent } from './types.js'; //# sourceMappingURL=runs.d.ts.map