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