aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/models/user/user-video-rate-interface.ts
diff options
context:
space:
mode:
Diffstat (limited to 'server/models/user/user-video-rate-interface.ts')
-rw-r--r--server/models/user/user-video-rate-interface.ts22
1 files changed, 22 insertions, 0 deletions
diff --git a/server/models/user/user-video-rate-interface.ts b/server/models/user/user-video-rate-interface.ts
new file mode 100644
index 000000000..e48869fd2
--- /dev/null
+++ b/server/models/user/user-video-rate-interface.ts
@@ -0,0 +1,22 @@
1import * as Sequelize from 'sequelize'
2
3export namespace UserVideoRateMethods {
4 export type LoadCallback = (err: Error, userVideoRateInstance: UserVideoRateInstance) => void
5 export type Load = (userId, videoId, transaction, callback) => void
6}
7
8export interface UserVideoRateClass {
9 load: UserVideoRateMethods.Load
10}
11
12export interface UserVideoRateAttributes {
13 type: string
14}
15
16export interface UserVideoRateInstance extends UserVideoRateClass, UserVideoRateAttributes, Sequelize.Instance<UserVideoRateAttributes> {
17 id: number
18 createdAt: Date
19 updatedAt: Date
20}
21
22export interface UserVideoRateModel extends UserVideoRateClass, Sequelize.Model<UserVideoRateInstance, UserVideoRateAttributes> {}