feat: Add width and height to VideoFile output (#2281)

* feat: Add `width` and `height` to `VideoFile` output

* Format
This commit is contained in:
Marc Rousavy
2023-12-12 16:43:57 +01:00
committed by GitHub
parent 98f08800f2
commit 9a187c6d19
6 changed files with 27 additions and 3 deletions

View File

@@ -53,4 +53,12 @@ export interface VideoFile extends TemporaryFile {
* Represents the duration of the video, in seconds.
*/
duration: number
/**
* The width of the video, in pixels.
*/
width: number
/**
* The height of the video, in pixels.
*/
height: number
}