diff options
author | Chocobozzz <florian.bigard@gmail.com> | 2017-06-12 21:06:32 +0200 |
---|---|---|
committer | Chocobozzz <florian.bigard@gmail.com> | 2017-06-12 21:06:32 +0200 |
commit | 75d612ce3ca9d6f69fe8e4e83dc3070d9ab56615 (patch) | |
tree | 016f64d0fc6cfee533516be40d76eaca1b1f837e /server/models/video-interface.ts | |
parent | 7593a21d13baad422efedfb658d7ceda4e0a8c6b (diff) | |
download | PeerTube-75d612ce3ca9d6f69fe8e4e83dc3070d9ab56615.tar.gz PeerTube-75d612ce3ca9d6f69fe8e4e83dc3070d9ab56615.tar.zst PeerTube-75d612ce3ca9d6f69fe8e4e83dc3070d9ab56615.zip |
Convert scripts to typescript
Diffstat (limited to 'server/models/video-interface.ts')
-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 |