Files
doors-wallpaper/cloudinary/cloudinary.ts
2024-09-25 19:13:53 +01:00

18 lines
326 B
TypeScript

interface ImageAsset {
asset_id: string;
public_id: 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;
}
export type { ImageAsset };