Bucket
import type { Bucket } from "https://esm.sh/@supabase/storage-js@2.89.0/dist/index.d.mts";interface Bucket {
allowed_mime_types?: string[];
created_at: string;
file_size_limit?: number;
id: string;
name: string;
owner: string;
public: boolean;
type?: BucketType;
updated_at: string;
}