diff options
Diffstat (limited to 'server/models/video-abuse-interface.ts')
-rw-r--r-- | server/models/video-abuse-interface.ts | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/server/models/video-abuse-interface.ts b/server/models/video-abuse-interface.ts index 9b77fc6f5..d9cb93b42 100644 --- a/server/models/video-abuse-interface.ts +++ b/server/models/video-abuse-interface.ts | |||
@@ -1,9 +1,13 @@ | |||
1 | import * as Sequelize from 'sequelize' | 1 | import * as Sequelize from 'sequelize' |
2 | 2 | ||
3 | // Don't use barrel, import just what we need | ||
4 | import { VideoAbuse as FormatedVideoAbuse } from '../../shared/models/video-abuse.model' | ||
5 | |||
3 | export namespace VideoAbuseMethods { | 6 | export namespace VideoAbuseMethods { |
4 | export type toFormatedJSON = () => void | 7 | export type toFormatedJSON = () => FormatedVideoAbuse |
5 | 8 | ||
6 | export type ListForApi = (start, count, sort, callback) => void | 9 | export type ListForApiCallback = (err: Error, videoAbuseInstances?: VideoAbuseInstance[], total?: number) => void |
10 | export type ListForApi = (start: number, count: number, sort: string, callback: ListForApiCallback) => void | ||
7 | } | 11 | } |
8 | 12 | ||
9 | export interface VideoAbuseClass { | 13 | export interface VideoAbuseClass { |
@@ -15,7 +19,7 @@ export interface VideoAbuseAttributes { | |||
15 | reason: string | 19 | reason: string |
16 | } | 20 | } |
17 | 21 | ||
18 | export interface VideoAbuseInstance extends Sequelize.Instance<VideoAbuseAttributes> { | 22 | export interface VideoAbuseInstance extends VideoAbuseClass, VideoAbuseAttributes, Sequelize.Instance<VideoAbuseAttributes> { |
19 | id: number | 23 | id: number |
20 | createdAt: Date | 24 | createdAt: Date |
21 | updatedAt: Date | 25 | updatedAt: Date |