/** * @license * Copyright 2024 Google LLC * SPDX-License-Identifier: Apache-2.0 */ import { InspectableRun, InspectableRunObserver } from "@google-labs/breadboard"; export { createPastRunObserver }; /** * Creaetes an InspectableRunObserver that holds a single run. * Useful for historical runs * * @param run -- the run to hold. * @returns */ declare function createPastRunObserver(run: InspectableRun): InspectableRunObserver; //# sourceMappingURL=past-run-observer.d.ts.map