Add type string to const variable

This commit is contained in:
Julien Dufresne
2017-01-02 16:44:39 -05:00
committed by GitHub
parent f16e8848de
commit b1e4a08ea0

8
node-wit/index.d.ts vendored
View File

@@ -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 {