We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 677e146 commit 4832c85Copy full SHA for 4832c85
src/types.ts
@@ -5553,7 +5553,11 @@ export type BatchJobSourceUnion = BatchJobSource | InlinedRequest[] | string;
5553
export type BatchJobDestinationUnion = BatchJobDestination | string;
5554
5555
5556
-// Shared aspect ratio types
+// Common aspect ratios supported across all media generation APIs
5557
export type CommonAspectRatio = "9:16" | "16:9";
5558
+
5559
+// Aspect ratios for image generation and editing
5560
export type ImageAspectRatio = CommonAspectRatio | "1:1" | "3:4" | "4:3";
5561
5562
+// Aspect ratios for video generation
5563
export type VideoAspectRatio = CommonAspectRatio;
0 commit comments