Skip to content

Commit 3ef345c

Browse files
Merge pull request #585 from cloudinary/update-resource-type
fix: resourcetype is not optional
2 parents 1255763 + a1fd5db commit 3ef345c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -581,7 +581,7 @@ declare module 'cloudinary' {
581581
width: number;
582582
height: number;
583583
format: string;
584-
resource_type?: "image" | "video" | "raw" | "auto";
584+
resource_type: "image" | "video" | "raw" | "auto";
585585
created_at: string;
586586
tags: Array<string>;
587587
pages: number;

0 commit comments

Comments
 (0)