diff --git a/lib/sequelize.d.ts b/lib/sequelize.d.ts index 66d0971..9c3b133 100644 --- a/lib/sequelize.d.ts +++ b/lib/sequelize.d.ts @@ -74,6 +74,11 @@ export interface PoolOptions { * object, and that its state is not disconnected */ validate?: (client?: any) => boolean + + /** + * Controls if pool should handle connection disconnect automatically without throwing errors + */ + handleDisconnects?: boolean } /**