From 327a67bab506c77eaeeba559a5a148ade43b04ab Mon Sep 17 00:00:00 2001 From: JulienDuf Date: Mon, 2 Jan 2017 15:33:28 -0500 Subject: [PATCH] Fix node-wit lint errors --- node-wit/index.d.ts | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/node-wit/index.d.ts b/node-wit/index.d.ts index f2fc3cfa10..4421b1b9b0 100644 --- a/node-wit/index.d.ts +++ b/node-wit/index.d.ts @@ -3,11 +3,8 @@ // Definitions by: Julien Dufresne // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped -/// - import * as Promise from "bluebird"; - export namespace log { class Logger { @@ -51,15 +48,14 @@ export interface WitRequest { } export interface WitResponse { - text?: string; - qickReplies?: Object; + qickReplies?: any; } export interface WitOption { accessToken?: string; - actions?: Object; + actions?: any; logger?: log.Logger; } @@ -73,7 +69,7 @@ export interface MessageResponse { msg_id: string; _text: string; - entities: Array; + entities: MessageResponseEntity[]; } export declare class Wit {