subscribable-things 2.1.58 → 2.1.59
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/es2019/types/emit-not-supported-error-function.d.ts +1 -1
- package/build/es2019/types/emit-not-supported-error-function.d.ts.map +1 -1
- package/build/es2019/types/observer-parameters.d.ts +1 -1
- package/build/es2019/types/observer-parameters.d.ts.map +1 -1
- package/build/es2019/types/subscribable-thing.d.ts +1 -1
- package/build/es2019/types/subscribable-thing.d.ts.map +1 -1
- package/build/es2019/types/subscribe-function.d.ts +1 -1
- package/build/es2019/types/subscribe-function.d.ts.map +1 -1
- package/build/es2019/types/wrap-subscribe-function-factory.d.ts +1 -1
- package/build/es2019/types/wrap-subscribe-function-factory.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/factories/wrap-subscribe-function.ts +1 -1
- package/src/types/emit-not-supported-error-function.ts +1 -1
- package/src/types/observer-parameters.ts +1 -1
- package/src/types/subscribable-thing.ts +1 -1
- package/src/types/subscribe-function.ts +1 -1
- package/src/types/wrap-subscribe-function-factory.ts +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Observer } from 'rxjs-interop';
|
|
1
|
+
import type { Observer } from 'rxjs-interop';
|
|
2
2
|
import { TUnsubscribeFunction } from './unsubscribe-function';
|
|
3
3
|
export type TEmitNotSupportedErrorFunction = (observer: Observer<any>) => TUnsubscribeFunction;
|
|
4
4
|
//# sourceMappingURL=emit-not-supported-error-function.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"emit-not-supported-error-function.d.ts","sourceRoot":"","sources":["../../../src/types/emit-not-supported-error-function.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,MAAM,cAAc,CAAC;
|
|
1
|
+
{"version":3,"file":"emit-not-supported-error-function.d.ts","sourceRoot":"","sources":["../../../src/types/emit-not-supported-error-function.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,cAAc,CAAC;AAC7C,OAAO,EAAE,oBAAoB,EAAE,MAAM,wBAAwB,CAAC;AAE9D,MAAM,MAAM,8BAA8B,GAAG,CAAC,QAAQ,EAAE,QAAQ,CAAC,GAAG,CAAC,KAAK,oBAAoB,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"observer-parameters.d.ts","sourceRoot":"","sources":["../../../src/types/observer-parameters.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,YAAY,EAAE,MAAM,cAAc,CAAC;
|
|
1
|
+
{"version":3,"file":"observer-parameters.d.ts","sourceRoot":"","sources":["../../../src/types/observer-parameters.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,QAAQ,EAAE,YAAY,EAAE,MAAM,cAAc,CAAC;AAE3D,MAAM,MAAM,mBAAmB,CAAC,CAAC,IAAI,UAAU,CAAC,YAAY,CAAC,CAAC,CAAC,CAAC,WAAW,CAAC,CAAC,GAAG,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { InteropObservable } from 'rxjs-interop';
|
|
1
|
+
import type { InteropObservable } from 'rxjs-interop';
|
|
2
2
|
import { TFlexibleSubscribeFunction } from './flexible-subscribe-function';
|
|
3
3
|
export type TSubscribableThing<T> = InteropObservable<T> & TFlexibleSubscribeFunction<T>;
|
|
4
4
|
//# sourceMappingURL=subscribable-thing.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"subscribable-thing.d.ts","sourceRoot":"","sources":["../../../src/types/subscribable-thing.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,iBAAiB,EAAE,MAAM,cAAc,CAAC;
|
|
1
|
+
{"version":3,"file":"subscribable-thing.d.ts","sourceRoot":"","sources":["../../../src/types/subscribable-thing.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,cAAc,CAAC;AACtD,OAAO,EAAE,0BAA0B,EAAE,MAAM,+BAA+B,CAAC;AAE3E,MAAM,MAAM,kBAAkB,CAAC,CAAC,IAAI,iBAAiB,CAAC,CAAC,CAAC,GAAG,0BAA0B,CAAC,CAAC,CAAC,CAAC"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Observer } from 'rxjs-interop';
|
|
1
|
+
import type { Observer } from 'rxjs-interop';
|
|
2
2
|
import { TOptionalUnsubscribeFunction } from './optional-unsubscribe-function';
|
|
3
3
|
export type TSubscribeFunction<T> = (observer: Observer<T>) => TOptionalUnsubscribeFunction;
|
|
4
4
|
//# sourceMappingURL=subscribe-function.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"subscribe-function.d.ts","sourceRoot":"","sources":["../../../src/types/subscribe-function.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,MAAM,cAAc,CAAC;
|
|
1
|
+
{"version":3,"file":"subscribe-function.d.ts","sourceRoot":"","sources":["../../../src/types/subscribe-function.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,cAAc,CAAC;AAC7C,OAAO,EAAE,4BAA4B,EAAE,MAAM,iCAAiC,CAAC;AAE/E,MAAM,MAAM,kBAAkB,CAAC,CAAC,IAAI,CAAC,QAAQ,EAAE,QAAQ,CAAC,CAAC,CAAC,KAAK,4BAA4B,CAAC"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { patch as patchFunction, toObserver as toObserverFunction } from 'rxjs-interop';
|
|
1
|
+
import type { patch as patchFunction, toObserver as toObserverFunction } from 'rxjs-interop';
|
|
2
2
|
import { TWrapSubscribeFunctionFunction } from './wrap-subscribe-function-function';
|
|
3
3
|
export type TWrapSubscribeFunctionFactory = (patch: typeof patchFunction, toObserver: typeof toObserverFunction) => TWrapSubscribeFunctionFunction;
|
|
4
4
|
//# sourceMappingURL=wrap-subscribe-function-factory.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"wrap-subscribe-function-factory.d.ts","sourceRoot":"","sources":["../../../src/types/wrap-subscribe-function-factory.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,IAAI,aAAa,EAAE,UAAU,IAAI,kBAAkB,EAAE,MAAM,cAAc,CAAC;
|
|
1
|
+
{"version":3,"file":"wrap-subscribe-function-factory.d.ts","sourceRoot":"","sources":["../../../src/types/wrap-subscribe-function-factory.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,KAAK,IAAI,aAAa,EAAE,UAAU,IAAI,kBAAkB,EAAE,MAAM,cAAc,CAAC;AAC7F,OAAO,EAAE,8BAA8B,EAAE,MAAM,oCAAoC,CAAC;AAEpF,MAAM,MAAM,6BAA6B,GAAG,CACxC,KAAK,EAAE,OAAO,aAAa,EAC3B,UAAU,EAAE,OAAO,kBAAkB,KACpC,8BAA8B,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Observer, Subscribable } from 'rxjs-interop';
|
|
1
|
+
import type { Observer, Subscribable } from 'rxjs-interop';
|
|
2
2
|
import { TObserverParameters, TSubscribableThing, TSubscribeFunction, TWrapSubscribeFunctionFactory } from '../types';
|
|
3
3
|
|
|
4
4
|
export const createWrapSubscribeFunction: TWrapSubscribeFunctionFactory = (patch, toObserver) => {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { InteropObservable } from 'rxjs-interop';
|
|
1
|
+
import type { InteropObservable } from 'rxjs-interop';
|
|
2
2
|
import { TFlexibleSubscribeFunction } from './flexible-subscribe-function';
|
|
3
3
|
|
|
4
4
|
export type TSubscribableThing<T> = InteropObservable<T> & TFlexibleSubscribeFunction<T>;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { patch as patchFunction, toObserver as toObserverFunction } from 'rxjs-interop';
|
|
1
|
+
import type { patch as patchFunction, toObserver as toObserverFunction } from 'rxjs-interop';
|
|
2
2
|
import { TWrapSubscribeFunctionFunction } from './wrap-subscribe-function-function';
|
|
3
3
|
|
|
4
4
|
export type TWrapSubscribeFunctionFactory = (
|