Skip to content

Commit

Permalink
fix(typings): extend FindOptions with QueryOptions (#10766)
Browse files Browse the repository at this point in the history
  • Loading branch information
ppetzold authored and sushantdhiman committed Apr 15, 2019
1 parent 638b13b commit 2f6e01b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion types/lib/model.d.ts
Expand Up @@ -437,7 +437,7 @@ export type FindAttributeOptions =
*
* A hash of options to describe the scope of the search
*/
export interface FindOptions extends Logging, Transactionable, Filterable, Projectable, Paranoid {
export interface FindOptions extends QueryOptions, Filterable, Projectable, Paranoid {
/**
* A list of associations to eagerly load using a left join. Supported is either
* `{ include: [ Model1, Model2, ...]}`, `{ include: [{ model: Model1, as: 'Alias' }]}` or
Expand Down

0 comments on commit 2f6e01b

Please sign in to comment.