We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2eb5262 commit 20ba62bCopy full SHA for 20ba62b
1 file changed
src/components/IKUpload/props.ts
@@ -7,18 +7,23 @@ type TransformationObject = {
7
value: string;
8
};
9
10
-type GifToVideoOrThumbnailObject = {
11
- type: "gif-to-video" | "thumbnail";
+type GifToVideoObject = {
+ type: "gif-to-video";
12
value?: string;
13
14
15
-type AbsObject = {
+type ThumbnailObject = {
16
+ type: "thumbnail";
17
+ value?: string;
18
+};
19
+
20
+type ABSObject = {
21
type: "abs";
22
23
protocol: "hls" | "dash";
24
25
-type PostTransformation = TransformationObject | GifToVideoOrThumbnailObject | AbsObject;
26
+type PostTransformation = TransformationObject | GifToVideoObject | ThumbnailObject | ABSObject;
27
28
type TransformationType = {
29
pre?: string;
0 commit comments