Documentation / @eventkit/base / AsyncObservableInput
Type Alias: AsyncObservableInput<T>
ts
type AsyncObservableInput<T> =
| AsyncObservable<T>
| InteropAsyncObservable<T>
| ArrayLike<T>
| PromiseLike<T>
| AsyncIterable<T>
| Iterable<T>
| ReadableStreamLike<T>;
Describes what types can be used as observable inputs in the from function
Type Parameters
Type Parameter | Description |
---|---|
T | The type of the values emitted by an AsyncObservable created from this input |