time-queues 1.2.0 → 1.2.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/README.md CHANGED
@@ -62,6 +62,7 @@ This project is licensed under the BSD-3-Clause License.
62
62
 
63
63
  ## Release History
64
64
 
65
+ * 1.2.1 *Minor release: updated formal TS dependencies in `index.d.ts`.*
65
66
  * 1.2.0 *Added `Counter`. Updated dev dependencies.*
66
67
  * 1.1.2 *Updated dev dependencies. No need to upgrade.*
67
68
  * 1.1.1 *Updates to TS typings.*
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "time-queues",
3
- "version": "1.2.0",
3
+ "version": "1.2.1",
4
4
  "description": "Time queues to organize multitasking and scheduled tasks.",
5
5
  "type": "module",
6
6
  "types": "./src/index.d.ts",
package/src/index.d.ts CHANGED
@@ -16,6 +16,7 @@ declare module 'time-queues' {
16
16
  export * from './Scheduler';
17
17
  export * from './Retainer';
18
18
  export * from './Throttler';
19
+ export * from './Counter';
19
20
 
20
21
  export * from './when-dom-loaded';
21
22
  export * from './when-loaded';