Fixes for ES6.

This commit is contained in:
Ryan Smith
2016-03-30 15:05:16 +01:00
parent fc0f5a34aa
commit 18fad79175

6
knex/knex.d.ts vendored
View File

@@ -3,12 +3,12 @@
// Definitions by: Qubo <https://github.com/tkQubo>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
/// <reference path="../bluebird/bluebird.d.ts" />
// <reference path="../bluebird/bluebird.d.ts" />
/// <reference path="../node/node.d.ts" />
declare module "knex" {
import Promise = require("bluebird");
import events = require("events");
// import Promise = require("bluebird");
import * as events from "events";
type Callback = Function;
type Client = Function;