@augment-vir/core 31.1.1 → 31.2.0
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
|
|
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
|
|
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
|
*
|