Update index.d.ts

After this PR (e86ea72b2d) a uniqueKey option can be added to the `belongsToMany` association.
This commit is contained in:
Alejandro Corredor
2019-02-21 18:46:58 -05:00
committed by GitHub
parent 8776b72673
commit a372e4f48e

View File

@@ -1379,7 +1379,11 @@ declare namespace sequelize {
* Should the join model have timestamps
*/
timestamps?: boolean;
/**
* Belongs-To-Many creates a unique key when primary key is not present on through model. This unique key name can be overridden using uniqueKey option.
*/
uniqueKey?: string;
}
/**