Type alias CustomStreamEvent<T>

CustomStreamEvent<T>: {
    data: T;
    event: "custom";
}

Streaming custom data from inside the nodes.

Type Parameters

  • T

Type declaration

  • data: T
  • event: "custom"