UNPKG
@tecfancy/set-env-variables
Version:
latest (0.0.4)
0.0.4
0.0.3
0.0.2
TecFancy set-env-variables
github.com/TecFancy/tecfancy-cli
TecFancy/tecfancy-cli
@tecfancy/set-env-variables
/
lib
/
index.d.ts
10 lines
(9 loc)
•
284 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
interface
OptionsType
{
force
?:
boolean
;
china
?:
boolean
; }
/** * Set environment variables from command line arguments */
export
declare
function
setEnvVariablesFromCommand
(
options
:
OptionsType
,
flag
: keyof
OptionsType
,
variables
:
Record
<
string
,
string
>
):
void
;
export
{};