@dereekb/rxjs 12.6.11 → 12.6.13

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": "@dereekb/rxjs",
3
- "version": "12.6.11",
3
+ "version": "12.6.13",
4
4
  "exports": {
5
5
  ".": {
6
6
  "types": "./src/index.d.ts",
@@ -6,7 +6,9 @@ import { WorkInstance, type WorkInstanceDelegate } from './work.instance';
6
6
  */
7
7
  export type WorkFactory<T, O> = FactoryWithRequiredInput<Maybe<WorkInstance<T, O>>, T>;
8
8
  /**
9
- * Performs the work. Can either return an observable that will use the handler, or can use the handler itself.
9
+ * Performs the work.
10
+ *
11
+ * Can either return an observable that will use the handler, or can use the handler itself.
10
12
  */
11
13
  export type Work<T = unknown, O = unknown> = WorkUsingObservable<T, O> | WorkUsingContext<T, O>;
12
14
  /**