/** * @license * Copyright 2024 Google LLC * SPDX-License-Identifier: Apache-2.0 */ import type { EventIdentifier, HarnessRunResult, InspectableRun, InspectableRunEvent, InspectableRunInputs, InspectableRunNodeEvent, MainGraphIdentifier, PathRegistryEntry } from "@breadboard-ai/types"; /** * Meant to be a very lightweight wrapper around the * data in the `PathRegistryEntry`. */ export declare class NestedRun implements InspectableRun { #private; readonly dataStoreKey: string; mainGraphId: MainGraphIdentifier; start: number; end: number | null; graphVersion: number; events: InspectableRunEvent[]; edges: never[]; constructor(entry: PathRegistryEntry); currentNodeEvent(): InspectableRunNodeEvent | null; stack(): InspectableRunNodeEvent[]; getEventById(id: EventIdentifier): InspectableRunEvent | null; inputs(): InspectableRunInputs | null; replay(): AsyncGenerator; } //# sourceMappingURL=nested-run.d.ts.map