From 0ddcac8352637e4162ff7bd45f43fed74be120a9 Mon Sep 17 00:00:00 2001 From: Ethan Date: Mon, 5 Sep 2016 22:43:46 -0400 Subject: [PATCH] Fix broken Q import --- twilio/twilio.d.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/twilio/twilio.d.ts b/twilio/twilio.d.ts index 93630f0da2..0858befbe8 100644 --- a/twilio/twilio.d.ts +++ b/twilio/twilio.d.ts @@ -5,12 +5,12 @@ /// /// -/// +/// import * as express from 'express'; import * as Http from 'http'; -import q = require('q'); +import Q = require('q'); export interface twilio { (sid?: string, tkn?: string, options?: twilio.ClientOptions): twilio.RestClient; @@ -872,4 +872,4 @@ export module twilio { } export interface TrunkResource extends ListMappedResource {} -} \ No newline at end of file +}