Skip to content

Commit d512db6

Browse files
committed
feat(env-options): Generalize type of getEnvironmentOptions so it will produce unions for tuples
1 parent f91a3f9 commit d512db6

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

packages/env-options/src/env-options.js

+7-5
Original file line numberDiff line numberDiff line change
@@ -50,11 +50,13 @@ export const makeEnvironmentCaptor = (aGlobal, dropNames = false) => {
5050
* Gets an environment option by name and returns the option value or the
5151
* given default.
5252
*
53+
* @template {string} D
54+
* @template {string | undefined} [O=undefined]
5355
* @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)}
5860
*/
5961
const getEnvironmentOption = (
6062
optionName,
@@ -95,7 +97,7 @@ export const makeEnvironmentCaptor = (aGlobal, dropNames = false) => {
9597
Fail`Unrecognized ${q(optionName)} value ${q(
9698
setting,
9799
)}. Expected one of ${q([defaultSetting, ...optOtherValues])}`;
98-
return setting;
100+
return /** @type {O extends undefined ? string : (O | D)} */ (setting);
99101
};
100102
freeze(getEnvironmentOption);
101103

0 commit comments

Comments
 (0)