Merge pull request #14240 from jeffkenney/master

knex: reference correct Promise implementation
This commit is contained in:
Daniel Rosenwasser
2017-01-25 18:22:46 -08:00
committed by GitHub
2 changed files with 5 additions and 3 deletions
+2 -1
View File
@@ -6,7 +6,8 @@
/// <reference types="bluebird" />
/// <reference types="node" />
import * as events from "events";
import events = require("events");
import Promise = require("bluebird");
type Callback = Function;
type Client = Function;
+3 -2
View File
@@ -1,6 +1,7 @@
"use strict";
import * as Knex from 'knex';
import * as _ from 'lodash';
import Knex = require('knex');
import Promise = require('bluebird');
import _ = require('lodash');
// Initializing the Library
var knex = Knex({