shelving 1.188.0 → 1.188.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "shelving",
3
- "version": "1.188.0",
3
+ "version": "1.188.1",
4
4
  "author": "Dave Houlbrooke <dave@shax.com>",
5
5
  "repository": {
6
6
  "type": "git",
@@ -9,7 +9,7 @@ export type PayloadFetchCallback<P, R> = (payload: P) => PromiseLike<R>;
9
9
  * @param value The initial value for the store, or `NONE` if it does not have one yet.
10
10
  * @param callback An optional callback that, if set, will be called with the current payload when the `fetch()` method is invoked to fetch the next value.
11
11
  */
12
- export declare abstract class PayloadFetchStore<P, R> extends FetchStore<R> {
12
+ export declare class PayloadFetchStore<P, R> extends FetchStore<R> {
13
13
  /**
14
14
  * Store keeping the current payload to send to the fetch on send.
15
15
  * - New payloads can be set using `this.payload.value`