Merge pull request #17362 from Torhal/sequelize_v3_bluebird

Import bluebird as Promise to fix breakage
This commit is contained in:
Nathan Shively-Sanders
2017-06-21 14:22:18 -07:00
committed by GitHub
2 changed files with 2 additions and 3 deletions

View File

@@ -6,7 +6,6 @@
// Based on original work by: samuelneff <https://github.com/samuelneff/sequelize-auto-ts/blob/master/lib/sequelize.d.ts>
/// <reference types="lodash" />
/// <reference types="validator" />

View File

@@ -2,15 +2,15 @@
// Project: http://sequelizejs.com
// Definitions by: samuelneff <https://github.com/samuelneff>, Peter Harris <https://github.com/codeanimal>, Ivan Drinchev <https://github.com/drinchev>, Nick Mueller <https://github.com/morpheusxaut>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
// TypeScript Version: 2.2
// TypeScript Version: 2.3
// Based on original work by: samuelneff <https://github.com/samuelneff/sequelize-auto-ts/blob/master/lib/sequelize.d.ts>
/// <reference types="lodash" />
/// <reference types="validator" />
import * as _ from "lodash";
import * as Promise from "bluebird";
declare namespace sequelize {