Magpie HTML - v0.1.3
    Preparing search index...

    Interface FeedEnclosure

    Feed enclosure (attached file).

    Represents attached files like audio, video, or documents. Commonly used for podcasts and media feeds.

    interface FeedEnclosure {
        url: string;
        type?: string;
        length?: number;
    }
    Index

    Properties

    Properties

    url: string

    URL of the attached file

    type?: string

    MIME type of the file (e.g., 'audio/mpeg', 'video/mp4')

    length?: number

    File size in bytes