From 065d70e2b51ccfdd1b7d700e77d12e4c64240f3c Mon Sep 17 00:00:00 2001 From: vvakame Date: Tue, 23 Feb 2016 11:04:37 +0900 Subject: [PATCH] adhoc fix sequelize/sequelize-tests.ts --- sequelize/sequelize-tests.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sequelize/sequelize-tests.ts b/sequelize/sequelize-tests.ts index b7a04761f0..3800f2ae22 100644 --- a/sequelize/sequelize-tests.ts +++ b/sequelize/sequelize-tests.ts @@ -1300,7 +1300,7 @@ s.define( 'ProductWithSettersAndGetters2', { s.define( 'post', { title : Sequelize.STRING, authorId : { type : Sequelize.INTEGER, references : testModel, referencesKey : 'id' } -} ); +} as any /* TODO please remove `as any` */); s.define( 'post', { title : Sequelize.STRING, authorId : { type : Sequelize.INTEGER, references : { model : testModel, key : 'id' } }