mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 21:19:50 +01:00
03dcd7077a
Delete deprecated an never used enum options `kAllowedInEnvironment` and `kDisallowedInEnvironment` in `OptionEnvvarSettings` Signed-off-by: Juan José Arboleda <soyjuanarbol@gmail.com> PR-URL: https://github.com/nodejs/node/pull/53079 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
36 lines
779 B
TypeScript
36 lines
779 B
TypeScript
export interface OptionsBinding {
|
|
getOptions(): {
|
|
options: Map<
|
|
string,
|
|
{
|
|
helpText: string;
|
|
envVarSettings: 0 | 1;
|
|
} & (
|
|
| { type: 0 | 1; value: undefined }
|
|
| { type: 2; value: boolean }
|
|
| { type: 3 | 4; value: number }
|
|
| { type: 5; value: string }
|
|
| { type: 6; value: { host: string; port: number } }
|
|
| { type: 7; value: string[] }
|
|
)
|
|
>;
|
|
aliases: Map<string, string[]>;
|
|
};
|
|
envSettings: {
|
|
kAllowedInEnvvar: 0;
|
|
kDisallowedInEnvvar: 1;
|
|
};
|
|
noGlobalSearchPaths: boolean;
|
|
shouldNotRegisterESMLoader: boolean;
|
|
types: {
|
|
kNoOp: 0;
|
|
kV8Option: 1;
|
|
kBoolean: 2;
|
|
kInteger: 3;
|
|
kUInteger: 4;
|
|
kString: 5;
|
|
kHostPort: 6;
|
|
kStringList: 7;
|
|
};
|
|
}
|