From b1e4a08ea0b747e6097bc657eb323d20937bd731 Mon Sep 17 00:00:00 2001 From: Julien Dufresne Date: Mon, 2 Jan 2017 16:44:39 -0500 Subject: [PATCH] Add type string to const variable --- node-wit/index.d.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/node-wit/index.d.ts b/node-wit/index.d.ts index 52c7a67890..511fde0913 100644 --- a/node-wit/index.d.ts +++ b/node-wit/index.d.ts @@ -12,10 +12,10 @@ export namespace log { constructor(lvl: string); } - const DEBUG; - const INFO; - const WARN; - const ERROR; + const DEBUG: string; + const INFO: string; + const WARN: string; + const ERROR: string; } export interface WitEntityValue {