@dereekb/rxjs 13.11.18 → 13.12.1

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/index.cjs.js CHANGED
@@ -6628,7 +6628,7 @@ function _define_property(obj, key, value) {
6628
6628
  * If an error is thrown, the error is forwarded to the reject function.
6629
6629
  *
6630
6630
  * @param fn - Synchronous function that returns the result value or throws an error.
6631
- * @throws Re-throws the error from `fn` after forwarding it to the reject function.
6631
+ * @throws {Error} Re-throws the error from `fn` after forwarding it to the reject function.
6632
6632
  */ key: "performTaskWithReturnValue",
6633
6633
  value: function performTaskWithReturnValue(fn) {
6634
6634
  try {
package/index.esm.js CHANGED
@@ -6626,7 +6626,7 @@ function _define_property(obj, key, value) {
6626
6626
  * If an error is thrown, the error is forwarded to the reject function.
6627
6627
  *
6628
6628
  * @param fn - Synchronous function that returns the result value or throws an error.
6629
- * @throws Re-throws the error from `fn` after forwarding it to the reject function.
6629
+ * @throws {Error} Re-throws the error from `fn` after forwarding it to the reject function.
6630
6630
  */ key: "performTaskWithReturnValue",
6631
6631
  value: function performTaskWithReturnValue(fn) {
6632
6632
  try {
package/package.json CHANGED
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "name": "@dereekb/rxjs",
3
- "version": "13.11.18",
3
+ "version": "13.12.1",
4
4
  "sideEffects": false,
5
5
  "peerDependencies": {
6
6
  "rxjs": "^7.8.2",
7
- "@dereekb/util": "13.11.18"
7
+ "@dereekb/util": "13.12.1"
8
8
  },
9
9
  "exports": {
10
10
  "./package.json": "./package.json",
@@ -81,7 +81,7 @@ export declare class WorkInstance<I = unknown, O = unknown> implements Destroyab
81
81
  * If an error is thrown, the error is forwarded to the reject function.
82
82
  *
83
83
  * @param fn - Synchronous function that returns the result value or throws an error.
84
- * @throws Re-throws the error from `fn` after forwarding it to the reject function.
84
+ * @throws {Error} Re-throws the error from `fn` after forwarding it to the reject function.
85
85
  */
86
86
  performTaskWithReturnValue(fn: () => O): void;
87
87
  /**