@iocium/favicon-extractor - v1.1.0
    Preparing search index...

    Interface IconEntry

    Represents a single icon extracted from a webpage or manifest.

    interface IconEntry {
        mimeType?: string;
        size?: string;
        type?: string;
        url: string;
    }
    Index

    Properties

    mimeType?: string

    The resolved MIME type of the icon (e.g., "image/png").

    size?: string

    The size of the icon in widthxheight format (e.g., "192x192").

    type?: string

    The logical type of the icon (e.g., "icon", "apple-touch-icon").

    url: string

    The absolute or relative URL pointing to the icon resource.