Rxnode
  • Rxnode
  • Libraries
    • child_process
    • core
    • crypto
    • http
    • fs
  • License
  • Contributor Covenant Code of Conduct
  • Contributing
  • Changelog
Powered by GitBook
On this page
  • observablify
  • watchify

Was this helpful?

Edit on GitHub
Export as PDF
  1. Libraries

core

observablify

function observablify<A extends Arguments, R extends Results = []>(
  fn: (...args: [...A, ErrorCallback<R>]) => any
): (...args: A) => Observable<VoidOrItemOrItems<R>>;

watchify

function watchify<A extends Arguments, R extends Results>(
  fn: (...args: [...A, Callback<R>]) => any,
  { closeOnUnsubscribe: closeOnUnsubscribe }?: { closeOnUnsubscribe?: boolean }
): (...args: A) => Observable<VoidOrItemOrItems<R>>;
Previouschild_processNextcrypto

Last updated 2 years ago

Was this helpful?