]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server/models/user/user-video-rate-interface.ts
Fix test (#71)
[github/Chocobozzz/PeerTube.git] / server / models / user / user-video-rate-interface.ts
CommitLineData
e02643f3
C
1import * as Sequelize from 'sequelize'
2
ee9e7b61
C
3import { VideoRateType } from '../../../shared/models/user-video-rate.model'
4
e02643f3 5export namespace UserVideoRateMethods {
69818c93 6 export type LoadCallback = (err: Error, userVideoRateInstance: UserVideoRateInstance) => void
ee9e7b61 7 export type Load = (userId: number, videoId: string, transaction: Sequelize.Transaction, callback: LoadCallback) => void
e02643f3
C
8}
9
10export interface UserVideoRateClass {
11 load: UserVideoRateMethods.Load
12}
13
14export interface UserVideoRateAttributes {
ee9e7b61 15 type: VideoRateType
e02643f3
C
16}
17
69818c93 18export interface UserVideoRateInstance extends UserVideoRateClass, UserVideoRateAttributes, Sequelize.Instance<UserVideoRateAttributes> {
e02643f3
C
19 id: number
20 createdAt: Date
21 updatedAt: Date
22}
23
24export interface UserVideoRateModel extends UserVideoRateClass, Sequelize.Model<UserVideoRateInstance, UserVideoRateAttributes> {}