interface MediumProps {
    attributes: {
        attachment_url: string;
        cropped_attachment_url: string;
        file_name?: string;
        file_type?: "audio" | "video" | "image";
        id: string;
        modified_attachment_url: string;
        thumbnail?: string;
    };
}

Properties

Properties

attributes: {
    attachment_url: string;
    cropped_attachment_url: string;
    file_name?: string;
    file_type?: "audio" | "video" | "image";
    id: string;
    modified_attachment_url: string;
    thumbnail?: string;
}