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
1 changed files with 4 additions and 0 deletions

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);
}