]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - server/models/account/account-video-rate-interface.ts
Fix lint
[github/Chocobozzz/PeerTube.git] / server / models / account / account-video-rate-interface.ts
index 82cbe38cc202e706c5f1f80a69586165482c7049..316056246fe217f39df387408461e32f0c1c4966 100644 (file)
@@ -17,10 +17,12 @@ export interface AccountVideoRateAttributes {
   videoId: number
 }
 
-export interface AccountVideoRateInstance extends AccountVideoRateClass, AccountVideoRateAttributes, Sequelize.Instance<AccountVideoRateAttributes> {
+export interface AccountVideoRateInstance
+  extends AccountVideoRateClass, AccountVideoRateAttributes, Sequelize.Instance<AccountVideoRateAttributes> {
   id: number
   createdAt: Date
   updatedAt: Date
 }
 
-export interface AccountVideoRateModel extends AccountVideoRateClass, Sequelize.Model<AccountVideoRateInstance, AccountVideoRateAttributes> {}
+export interface AccountVideoRateModel
+  extends AccountVideoRateClass, Sequelize.Model<AccountVideoRateInstance, AccountVideoRateAttributes> {}