rxjs
Version:
Reactive Extensions for modern JavaScript
10 lines (8 loc) • 329 B
text/typescript
import { Observable } from '../../Observable';
import { bindNodeCallback as staticBindNodeCallback } from '../../observable/bindNodeCallback';
Observable.bindNodeCallback = staticBindNodeCallback;
declare module '../../Observable' {
namespace Observable {
export let bindNodeCallback: typeof staticBindNodeCallback;
}
}