Skip to content

Commit d1f6daa

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

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

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

+6-5
Original file line numberDiff line numberDiff line change
@@ -50,11 +50,12 @@ 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-
* @param {string} optionName
54-
* @param {string} defaultSetting
55-
* @param {string[]} [optOtherValues]
53+
* @template {string} T
54+
* @param {T} optionName
55+
* @param {T} defaultSetting
56+
* @param {T[]} [optOtherValues]
5657
* If provided, the option value must be included or match `defaultSetting`.
57-
* @returns {string}
58+
* @returns {T}
5859
*/
5960
const getEnvironmentOption = (
6061
optionName,
@@ -95,7 +96,7 @@ export const makeEnvironmentCaptor = (aGlobal, dropNames = false) => {
9596
Fail`Unrecognized ${q(optionName)} value ${q(
9697
setting,
9798
)}. Expected one of ${q([defaultSetting, ...optOtherValues])}`;
98-
return setting;
99+
return /** @type {T} */ (setting);
99100
};
100101
freeze(getEnvironmentOption);
101102

0 commit comments

Comments
 (0)