Add account avatar
[oweals/peertube.git] / server / models / account / account-video-rate-interface.ts
1 import * as Sequelize from 'sequelize'
2 import * as Promise from 'bluebird'
3
4 import { VideoRateType } from '../../../shared/models/videos/video-rate.type'
5 import { AccountInstance } from './account-interface'
6
7 export namespace AccountVideoRateMethods {
8   export type Load = (accountId: number, videoId: number, transaction: Sequelize.Transaction) => Promise<AccountVideoRateInstance>
9 }
10
11 export interface AccountVideoRateClass {
12   load: AccountVideoRateMethods.Load
13 }
14
15 export interface AccountVideoRateAttributes {
16   type: VideoRateType
17   accountId: number
18   videoId: number
19
20   Account?: AccountInstance
21 }
22
23 export interface AccountVideoRateInstance
24   extends AccountVideoRateClass, AccountVideoRateAttributes, Sequelize.Instance<AccountVideoRateAttributes> {
25   id: number
26   createdAt: Date
27   updatedAt: Date
28 }
29
30 export interface AccountVideoRateModel
31   extends AccountVideoRateClass, Sequelize.Model<AccountVideoRateInstance, AccountVideoRateAttributes> {}