Describes a subscribable output field value.
| 17 | |
| 18 | /** Describes a subscribable output field value. */ |
| 19 | interface SubscribableOutput<T> { |
| 20 | subscribe(listener: (v: T) => void): { |
| 21 | unsubscribe: () => void; |
| 22 | }; |
| 23 | } |
| 24 | |
| 25 | export function createOutputListener( |
| 26 | tNode: TNode, |
no outgoing calls
no test coverage detected
searching dependent graphs…