UNPKG
react-gnome
Version:
latest (0.0.1)
0.0.1
## Getting Started
react-gnome
/
dist
/
types
/
utils
/
env-vars.d.ts
7 lines
(6 loc)
•
215 B
TypeScript
View Raw
1
2
3
4
5
6
7
export
type
EnvVariableValue
=
string
|
number
|
boolean
|
undefined
;
export
declare
class
EnvVars
{
private
defined;
define
(
name
:
string
,
value
:
EnvVariableValue
):
void
;
toJavascriptModule
():
string
; }