From e5f1296ee484544c0096b9f0b7d0466b9477566e Mon Sep 17 00:00:00 2001 From: Nate Silva Date: Mon, 3 Jul 2017 13:15:50 -0700 Subject: [PATCH] support `timestamps` option on `AssociationOptionsBelongsToMany` as documented at http://docs.sequelizejs.com/class/lib/model.js~Model.html#static-method-belongsToMany --- types/sequelize/index.d.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/types/sequelize/index.d.ts b/types/sequelize/index.d.ts index c227e13d55..88296b8215 100644 --- a/types/sequelize/index.d.ts +++ b/types/sequelize/index.d.ts @@ -1355,6 +1355,11 @@ declare namespace sequelize { */ otherKey?: string | AssociationForeignKeyOptions; + /** + * Should the join model have timestamps + */ + timestamps?: boolean; + } /**