flowGraphContextLogger.d.ts 286 B

123456789
  1. import type { FlowGraphContext } from "./flowGraphContext";
  2. /**
  3. * @experimental
  4. * This class is a decorator for the context which logs the nodes that were executed.
  5. */
  6. export declare class FlowGraphContextLogger {
  7. private _context;
  8. constructor(_context: FlowGraphContext);
  9. }