Skip to content

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 ParameterDescription
TThe type of the values emitted by an AsyncObservable created from this input

Released under the MIT License.