flowGraphEventBlock.d.ts 454 B

12345678910111213
  1. import { FlowGraphAsyncExecutionBlock } from "./flowGraphAsyncExecutionBlock";
  2. import type { FlowGraphContext } from "./flowGraphContext";
  3. /**
  4. * @experimental
  5. * A type of block that listens to an event observable and activates
  6. * its output signal when the event is triggered.
  7. */
  8. export declare abstract class FlowGraphEventBlock extends FlowGraphAsyncExecutionBlock {
  9. /**
  10. * @internal
  11. */
  12. _execute(context: FlowGraphContext): void;
  13. }