Update index.d.ts

This commit is contained in:
Julien Dufresne
2017-01-02 16:30:32 -05:00
committed by GitHub
parent 83d54577e5
commit f16e8848de

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

@@ -7,15 +7,15 @@ import * as Promise from "bluebird";
export namespace log {
declare class Logger {
class Logger {
constructor(lvl: string);
}
declare const DEBUG = 'debug';
declare const INFO = 'info';
declare const WARN = 'warn';
declare const ERROR = 'error';
const DEBUG;
const INFO;
const WARN;
const ERROR;
}
export interface WitEntityValue {