mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-01 12:42:58 +08:00
Fixes for ES6.
This commit is contained in:
6
knex/knex.d.ts
vendored
6
knex/knex.d.ts
vendored
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user