@dereekb/util 13.6.4 → 13.6.6

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.
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "@dereekb/util/fetch",
3
- "version": "13.6.4",
3
+ "version": "13.6.6",
4
4
  "peerDependencies": {
5
- "@dereekb/util": "13.6.4",
5
+ "@dereekb/util": "13.6.6",
6
6
  "make-error": "^1.3.0",
7
7
  "fast-content-type-parse": "^3.0.0"
8
8
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dereekb/util",
3
- "version": "13.6.4",
3
+ "version": "13.6.6",
4
4
  "exports": {
5
5
  "./test": {
6
6
  "module": "./test/index.esm.js",
@@ -1,6 +1,15 @@
1
1
  import { type MinAndMaxFunctionResult, type SortCompareFunction } from '../sort';
2
2
  import { type MapFunction } from '../value/map';
3
3
  import { type Maybe } from '../value/maybe.type';
4
+ /**
5
+ * A non-negative integer representing a count of items.
6
+ *
7
+ * @example
8
+ * ```ts
9
+ * const totalUsers: Count = 42;
10
+ * ```
11
+ */
12
+ export type Count = number;
4
13
  /**
5
14
  * A string represented within a number.
6
15
  */
package/test/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "@dereekb/util/test",
3
- "version": "13.6.4",
3
+ "version": "13.6.6",
4
4
  "peerDependencies": {
5
- "@dereekb/util": "13.6.4",
5
+ "@dereekb/util": "13.6.6",
6
6
  "make-error": "^1.3.0"
7
7
  },
8
8
  "exports": {