diff --git a/types/sequelize/index.d.ts b/types/sequelize/index.d.ts index cc4bef61ba..203e069b16 100644 --- a/types/sequelize/index.d.ts +++ b/types/sequelize/index.d.ts @@ -3366,6 +3366,13 @@ declare namespace sequelize { * Throw EmptyResultError if a record is not found */ rejectOnEmpty?: boolean; + + /** + * Force the query to use the write pool + * + * Defaults to false + */ + useMaster?: boolean; } type AnyFindOptions = FindOptions;