Files
doors-wallpaper/cloudinary/cloudinary.ts

20 lines
377 B
TypeScript

interface ImageAsset {
asset_id: string;
public_id: string;
display_name: string;
format: "jpg" | "png" | "heic";
version: number;
resource_type: "image";
type: "upload";
bytes: number;
width: number;
height: number;
secure_url: string;
thumbnail_url: string;
source_url?: string;
creator_name?: string;
is_ai_generated?: boolean;
}
export type { ImageAsset };