diff options
Diffstat (limited to 'server/models/user/user-video-rate-interface.ts')
-rw-r--r-- | server/models/user/user-video-rate-interface.ts | 22 |
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 @@ | |||
1 | import * as Sequelize from 'sequelize' | ||
2 | |||
3 | export namespace UserVideoRateMethods { | ||
4 | export type LoadCallback = (err: Error, userVideoRateInstance: UserVideoRateInstance) => void | ||
5 | export type Load = (userId, videoId, transaction, callback) => void | ||
6 | } | ||
7 | |||
8 | export interface UserVideoRateClass { | ||
9 | load: UserVideoRateMethods.Load | ||
10 | } | ||
11 | |||
12 | export interface UserVideoRateAttributes { | ||
13 | type: string | ||
14 | } | ||
15 | |||
16 | export interface UserVideoRateInstance extends UserVideoRateClass, UserVideoRateAttributes, Sequelize.Instance<UserVideoRateAttributes> { | ||
17 | id: number | ||
18 | createdAt: Date | ||
19 | updatedAt: Date | ||
20 | } | ||
21 | |||
22 | export interface UserVideoRateModel extends UserVideoRateClass, Sequelize.Model<UserVideoRateInstance, UserVideoRateAttributes> {} | ||