File tree 1 file changed +7
-5
lines changed
1 file changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -50,11 +50,13 @@ export const makeEnvironmentCaptor = (aGlobal, dropNames = false) => {
50
50
* Gets an environment option by name and returns the option value or the
51
51
* given default.
52
52
*
53
+ * @template {string} D
54
+ * @template {string | undefined} [O=undefined]
53
55
* @param {string } optionName
54
- * @param {string } defaultSetting
55
- * @param {string[] } [optOtherValues]
56
- * If provided, the option value must be included or match `defaultSetting`.
57
- * @returns {string }
56
+ * @param {D } defaultSetting
57
+ * @param {(readonly string[]) & (readonly O[]) } [optOtherValues]
58
+ * If provided, the option value must be included or match `defaultSetting`.
59
+ * @returns {O extends undefined ? string : (D | O) }
58
60
*/
59
61
const getEnvironmentOption = (
60
62
optionName ,
@@ -95,7 +97,7 @@ export const makeEnvironmentCaptor = (aGlobal, dropNames = false) => {
95
97
Fail `Unrecognized ${ q ( optionName ) } value ${ q (
96
98
setting ,
97
99
) } . Expected one of ${ q ( [ defaultSetting , ...optOtherValues ] ) } `;
98
- return setting ;
100
+ return /** @type { O extends undefined ? string : (O | D) } */ ( setting ) ;
99
101
} ;
100
102
freeze ( getEnvironmentOption ) ;
101
103
You can’t perform that action at this time.
0 commit comments