Skip to content

Commit 6d998c3

Browse files
Robin BuschmannRobin Buschmann
authored andcommitted
type
1 parent f32c0a3 commit 6d998c3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

interfaces/IFindOptions.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import {col} from "sequelize";
33
import {and} from "sequelize";
44
import {or} from "sequelize";
55
import {WhereOptions} from "sequelize";
6-
import {FindOptionsAttriburesArray} from "sequelize";
6+
import {FindOptionsAttributesArray} from "sequelize";
77
import {IIncludeOptions} from "./IIncludeOptions";
88
import {literal} from "sequelize";
99
import {SearchPathOptions} from "sequelize";
@@ -22,7 +22,7 @@ export interface IFindOptions extends LoggingOptions, SearchPathOptions {
2222
* `Sequelize.literal`, `Sequelize.fn` and so on), and the second is the name you want the attribute to
2323
* have in the returned instance
2424
*/
25-
attributes?: FindOptionsAttriburesArray | { include?: FindOptionsAttriburesArray, exclude?: Array<string> };
25+
attributes?: FindOptionsAttributesArray | { include?: FindOptionsAttributesArray, exclude?: Array<string> };
2626

2727
/**
2828
* If true, only non-deleted records will be returned. If false, both deleted and non-deleted records will

0 commit comments

Comments
 (0)