mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-08-12 04:50:18 +00:00
Merge pull request #14240 from jeffkenney/master
knex: reference correct Promise implementation
This commit is contained in:
Vendored
+2
-1
@@ -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
@@ -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({
|
||||
|
||||
Reference in New Issue
Block a user