Skip to content

Commit 4832c85

Browse files
committed
docs: add JSDoc comments for aspect ratio type definitions
Signed-off-by: puretension <[email protected]>
1 parent 677e146 commit 4832c85

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/types.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5553,7 +5553,11 @@ export type BatchJobSourceUnion = BatchJobSource | InlinedRequest[] | string;
55535553
export type BatchJobDestinationUnion = BatchJobDestination | string;
55545554

55555555

5556-
// Shared aspect ratio types
5556+
// Common aspect ratios supported across all media generation APIs
55575557
export type CommonAspectRatio = "9:16" | "16:9";
5558+
5559+
// Aspect ratios for image generation and editing
55585560
export type ImageAspectRatio = CommonAspectRatio | "1:1" | "3:4" | "4:3";
5561+
5562+
// Aspect ratios for video generation
55595563
export type VideoAspectRatio = CommonAspectRatio;

0 commit comments

Comments
 (0)