From 1fec5323d918b772f21e21ca473c54f13403967b Mon Sep 17 00:00:00 2001 From: Phil Kunz Date: Tue, 1 Dec 2015 08:29:58 +0100 Subject: [PATCH] closes #1 --- ts/smartenv.classes.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ts/smartenv.classes.ts b/ts/smartenv.classes.ts index 666eed5..e709d0b 100644 --- a/ts/smartenv.classes.ts +++ b/ts/smartenv.classes.ts @@ -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"; } }; -} \ No newline at end of file +}