We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e018e95 commit 6dec552Copy full SHA for 6dec552
libs/interfaces/UploadOptions.ts
@@ -15,11 +15,11 @@ interface AbsObject {
15
protocol: "hls" | "dash";
16
}
17
18
-type postTransformation = TransformationObject | GifToVideoOrThumbnailObject | AbsObject;
+type PostTransformation = TransformationObject | GifToVideoOrThumbnailObject | AbsObject;
19
20
-interface transformation{
+interface Transformation{
21
pre?: string
22
- post?: postTransformation[]
+ post?: PostTransformation[]
23
24
25
/**
@@ -106,5 +106,5 @@ export interface UploadOptions {
106
customMetadata?: {
107
[key: string]: string | number | boolean | Array<string | number | boolean>;
108
},
109
- transformation?: transformation
+ transformation?: Transformation
110
0 commit comments