bringapp
    Preparing search index...

    Type Alias MediaType

    Represents a media type with optional properties.

    type MediaType = {
        alt?: string;
        caption?: string;
        description?: string;
        filename?: string;
        id: number | null;
        mime?: string;
        src?: string;
        title?: string;
        type?: string;
    }
    Index

    Properties

    alt?: string

    The media alt text.

    caption?: string

    The media caption.

    description?: string

    The media description.

    filename?: string

    The media filename.

    id: number | null

    The media ID.

    mime?: string

    The media MIME type.

    src?: string

    The media source URL.

    title?: string

    The media title.

    type?: string

    The media type.