2017-05-22 14:58:25 -04:00
|
|
|
import * as Sequelize from 'sequelize'
|
2017-07-05 07:26:25 -04:00
|
|
|
import * as Promise from 'bluebird'
|
2017-05-22 14:58:25 -04:00
|
|
|
|
2017-07-10 13:43:21 -04:00
|
|
|
import { VideoRateType } from '../../../shared/models/videos/video-rate.type'
|
2017-06-16 04:36:18 -04:00
|
|
|
|
2017-05-22 14:58:25 -04:00
|
|
|
export namespace UserVideoRateMethods {
|
2017-07-11 10:01:56 -04:00
|
|
|
export type Load = (userId: number, videoId: number, transaction: Sequelize.Transaction) => Promise<UserVideoRateInstance>
|
2017-05-22 14:58:25 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
export interface UserVideoRateClass {
|
|
|
|
load: UserVideoRateMethods.Load
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface UserVideoRateAttributes {
|
2017-06-16 04:36:18 -04:00
|
|
|
type: VideoRateType
|
2017-08-25 12:36:49 -04:00
|
|
|
userId: number
|
|
|
|
videoId: number
|
2017-05-22 14:58:25 -04:00
|
|
|
}
|
|
|
|
|
2017-06-10 16:15:25 -04:00
|
|
|
export interface UserVideoRateInstance extends UserVideoRateClass, UserVideoRateAttributes, Sequelize.Instance<UserVideoRateAttributes> {
|
2017-05-22 14:58:25 -04:00
|
|
|
id: number
|
|
|
|
createdAt: Date
|
|
|
|
updatedAt: Date
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface UserVideoRateModel extends UserVideoRateClass, Sequelize.Model<UserVideoRateInstance, UserVideoRateAttributes> {}
|