mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-22 11:57:33 +08:00
Changed optional property to required property (#15820)
This commit is contained in:
4
types/sequelize/index.d.ts
vendored
4
types/sequelize/index.d.ts
vendored
@@ -1,6 +1,6 @@
|
||||
// Type definitions for Sequelize 4.0.0
|
||||
// Project: http://sequelizejs.com
|
||||
// Definitions by: samuelneff <https://github.com/samuelneff>, Peter Harris <https://github.com/codeanimal>, Ivan Drinchev <https://github.com/drinchev>
|
||||
// Definitions by: samuelneff <https://github.com/samuelneff>, Peter Harris <https://github.com/codeanimal>, Ivan Drinchev <https://github.com/drinchev>, Brendan Abolivier <https://github.com/babolivier>
|
||||
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
||||
// TypeScript Version: 2.2
|
||||
|
||||
@@ -4329,7 +4329,7 @@ declare namespace sequelize {
|
||||
/**
|
||||
* If this column references another table, provide it here as a Model, or a string
|
||||
*/
|
||||
model?: string | Model<any, any>;
|
||||
model: string | Model<any, any>;
|
||||
|
||||
/**
|
||||
* The column of the foreign table that this column references
|
||||
|
||||
Reference in New Issue
Block a user