Changed optional property to required property (#15820)

This commit is contained in:
Brendan Abolivier
2017-04-20 20:33:30 +02:00
committed by Andy
parent e99f7c8e4c
commit 6389fb3171

View File

@@ -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