diff options
Diffstat (limited to 'server')
-rw-r--r-- | server/models/video-interface.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/models/video-interface.ts b/server/models/video-interface.ts index 7005f213c..7120f91cd 100644 --- a/server/models/video-interface.ts +++ b/server/models/video-interface.ts | |||
@@ -70,7 +70,7 @@ export namespace VideoMethods { | |||
70 | export type GetDurationFromFileCallback = (err: Error, duration?: number) => void | 70 | export type GetDurationFromFileCallback = (err: Error, duration?: number) => void |
71 | export type GetDurationFromFile = (videoPath, callback) => void | 71 | export type GetDurationFromFile = (videoPath, callback) => void |
72 | 72 | ||
73 | export type ListCallback = () => void | 73 | export type ListCallback = (err: Error, videoInstances: VideoInstance[]) => void |
74 | export type List = (callback: ListCallback) => void | 74 | export type List = (callback: ListCallback) => void |
75 | 75 | ||
76 | export type ListForApiCallback = (err: Error, videoInstances?: VideoInstance[], total?: number) => void | 76 | export type ListForApiCallback = (err: Error, videoInstances?: VideoInstance[], total?: number) => void |