From 17b2194890170062203508504e76382ab7c629db Mon Sep 17 00:00:00 2001 From: Brian Love Date: Mon, 22 Feb 2016 19:55:43 -0700 Subject: [PATCH] Added dialectOptions property to the Options interface. --- sequelize/sequelize-2.0.0.d.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/sequelize/sequelize-2.0.0.d.ts b/sequelize/sequelize-2.0.0.d.ts index 04af612a5..e2cbdfe48 100644 --- a/sequelize/sequelize-2.0.0.d.ts +++ b/sequelize/sequelize-2.0.0.d.ts @@ -1379,6 +1379,11 @@ declare module "sequelize" * connecting to a pg database, you should specify 'pg.js' here */ dialectModulePath?: string; + + /** + * The dialect options that are passed to the underlying dialect library. + */ + dialectOptions?: any; /** * The host of the relational database. Default 'localhost'.