Function: get()
Function: get()
Get the specified env variable value.
Param
The environment variable key.
Param
Options for retrieving the value.
Call Signature
function get<T>(key): undefined | T;
Get the specified env variable value.
Type Parameters
T
T
Parameters
key
string
The environment variable key.
Returns
undefined
| T
The value of the environment variable.
Param
The environment variable key.
Param
Options for retrieving the value.
Call Signature
function get<T>(key, options): T;
Get the specified env variable value.
Type Parameters
T
T
Parameters
key
string
The environment variable key.
options
any
Options for retrieving the value.
Returns
T
The value of the environment variable.
Param
The environment variable key.
Param
Options for retrieving the value.