The dialectOptions property should be of type Object as per the documentation: http://docs.sequelizejs.com/en/latest/api/sequelize/.

This commit is contained in:
Brian Love
2016-02-22 19:58:42 -07:00
parent 17b2194890
commit 7ae80ff1b1
+1 -1
View File
@@ -1383,7 +1383,7 @@ declare module "sequelize"
/**
* The dialect options that are passed to the underlying dialect library.
*/
dialectOptions?: any;
dialectOptions?: Object;
/**
* The host of the relational database. Default 'localhost'.