Name the environment variable to use as default value on init, if available
|
* TODO `env` field for options and flags |
|
* Name the environment variable to use as default value on init, if available |
|
*/ |
import { ConfigMetaSet, ConfigSet, ConfigType } from 'jackspeak';
/*
* TODO `env` field for options and flags
* Name the environment variable to use as default value on init, if available
*/
/*
* TODO `secret` (or similar) field for options and flags
* Indicate that the actual default value should not be displayed in usage (e.g. for an `env` value)
*/
type MetaSet<T extends ConfigType> = {
value: ConfigMetaSet<T, false>;
list: ConfigMetaSet<T, true>;
Name the environment variable to use as default value on init, if available
qui-cli/packages/plugin/src/Options.ts
Lines 4 to 6 in 6aa6697