This commit is contained in:
Phil Kunz 2015-12-01 08:29:58 +01:00
parent 582afc0361
commit 1fec5323d9

View File

@ -2,7 +2,7 @@
class Environment {
public runtimeEnv:string;
public userAgent:string;
public nodeVersion;
public nodeVersion:string;
public isBrowser:boolean;
public isNode:boolean;
constructor(runtimeEnvArg,userAgentArg = "undefined") {
@ -18,4 +18,4 @@ class Environment {
this.nodeVersion = "undefined";
}
};
}
}