1
0
mirror of https://github.com/node-red/node-red.git synced 2023-10-10 13:36:53 +02:00

add env.get to function node defs

This commit is contained in:
Steve-Mcl 2021-06-05 12:42:54 +01:00
parent 7f2c6e40d3
commit 714a5e26b3

View File

@ -102,3 +102,7 @@ declare class global {
/** Get an array of the keys in the global context store */
static keys(store?:string):Array<string> ;
}
declare class env {
/** Get an environment variable value */
static get(name:string);
}