FileMetadata
import type { FileMetadata } from "https://esm.sh/@supabase/storage-js@2.99.0/dist/index.d.mts";Metadata object returned by the Storage API for files Contains information about file size, type, caching, and HTTP response details
interface FileMetadata {
[key: string]: any;
cacheControl: string;
contentLength: number;
eTag: string;
httpStatusCode: number;
lastModified: string;
mimetype: string;
size: number;
}