@augment-vir/core 31.1.1 → 31.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.
@@ -1,12 +1,20 @@
1
1
  import type { CompleteRequire } from './required-keys.js';
2
2
  /**
3
- * Gets all values of an object.
3
+ * Gets the value types of an object with all parts of that object required.
4
4
  *
5
5
  * @category Object
6
6
  * @category Package : @augment-vir/common
7
7
  * @package [`@augment-vir/common`](https://www.npmjs.com/package/@augment-vir/common)
8
8
  */
9
- export type Values<T> = CompleteRequire<T>[keyof T];
9
+ export type CompleteValues<T> = CompleteRequire<T>[keyof T];
10
+ /**
11
+ * Gets the value types of an object.
12
+ *
13
+ * @category Object
14
+ * @category Package : @augment-vir/common
15
+ * @package [`@augment-vir/common`](https://www.npmjs.com/package/@augment-vir/common)
16
+ */
17
+ export type Values<T> = T[keyof T];
10
18
  /**
11
19
  * Gets the value within an object when all its keys are required.
12
20
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@augment-vir/core",
3
- "version": "31.1.1",
3
+ "version": "31.2.1",
4
4
  "description": "Core augment-vir augments. Use @augment-vir/common instead.",
5
5
  "homepage": "https://github.com/electrovir/augment-vir",
6
6
  "bugs": {