aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/types/express.d.ts
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2022-02-11 10:51:33 +0100
committerChocobozzz <chocobozzz@cpy.re>2022-02-28 10:42:19 +0100
commitc729caf6cc34630877a0e5a1bda1719384cd0c8a (patch)
tree1d2e13722e518c73d2c9e6f0969615e29d51cf8c /server/types/express.d.ts
parenta24bf4dc659cebb65d887862bf21d7a35e9ec791 (diff)
downloadPeerTube-c729caf6cc34630877a0e5a1bda1719384cd0c8a.tar.gz
PeerTube-c729caf6cc34630877a0e5a1bda1719384cd0c8a.tar.zst
PeerTube-c729caf6cc34630877a0e5a1bda1719384cd0c8a.zip
Add basic video editor support
Diffstat (limited to 'server/types/express.d.ts')
-rw-r--r--server/types/express.d.ts3
1 files changed, 2 insertions, 1 deletions
diff --git a/server/types/express.d.ts b/server/types/express.d.ts
index 1a99b598a..91a8cf3d8 100644
--- a/server/types/express.d.ts
+++ b/server/types/express.d.ts
@@ -40,7 +40,7 @@ import {
40 MVideoRedundancyVideo, 40 MVideoRedundancyVideo,
41 MVideoShareActor, 41 MVideoShareActor,
42 MVideoThumbnail 42 MVideoThumbnail
43} from '../../types/models' 43} from './models'
44import { Writable } from 'stream' 44import { Writable } from 'stream'
45 45
46declare module 'express' { 46declare module 'express' {
@@ -60,6 +60,7 @@ declare module 'express' {
60 export type UploadFileForCheck = { 60 export type UploadFileForCheck = {
61 originalname: string 61 originalname: string
62 mimetype: string 62 mimetype: string
63 size: number
63 } 64 }
64 65
65 export type UploadFilesForCheck = { 66 export type UploadFilesForCheck = {