fix(core): update

This commit is contained in:
2022-08-05 12:50:37 +02:00
parent e8057c0c95
commit b06ceaa9bf
11 changed files with 6605 additions and 18824 deletions

View File

@@ -1,6 +1,6 @@
import * as plugins from './smartrx.plugins';
import * as plugins from './smartrx.plugins.js';
import * as rxjs from './smartrx.plugins.rxjs';
import * as rxjs from './smartrx.plugins.rxjs.js';
/**
* ObservableIntake
@@ -22,7 +22,7 @@ export class ObservableIntake<T> {
private payloadBuffer: any[] = [];
constructor() {
this.observable = rxjs.Observable.create((observerArg: rxjs.Observer<any>) => {
this.observable = new rxjs.Observable((observerArg: rxjs.Observer<any>) => {
this.observableFunctions.next = (...args: any) => {
return observerArg.next(args);
};