For the complete documentation index, see llms.txt. This page is also available as Markdown.

SubscribableOrPromise

type SubscribableOrPromise<T> =
  | Subscribable<T>
  | Subscribable<never>
  | PromiseLike<T>
  | InteropObservable<T>;

Recursos adicionales

Source code

Documentación oficial en inglés

Last updated