evg_observable 3.1.3 → 3.1.4

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "evg_observable",
3
- "version": "3.1.3",
3
+ "version": "3.1.4",
4
4
  "description": "Lightweight reactive Observable library (zero dependencies) — 2-7x faster than RxJS, 1.5-3x faster than observable-fns. Pipe operators: throttle, debounce, distinctUntilChanged, map, tap. Original hot-observable architecture, not a fork or wrapper.",
5
5
  "main": "./src/outLib/index.js",
6
6
  "module": "./src/outLib-esm/index.mjs",
@@ -1,4 +1,4 @@
1
- export type ICallback<T> = (value?: T) => any;
1
+ export type ICallback<T> = (value: T) => any;
2
2
  export type IErrorCallback = (errorData: any, errorMessage: any) => void;
3
3
  export type IListener<T> = ICallback<T>;
4
4
  export type IDestroy = {