UNPKG

@realfavicongenerator/check-favicon

Version:

Check the favicon of a website

8 lines (7 loc) 704 B
import { DesktopFaviconReport, DesktopSingleReport, Fetcher } from "../types"; import { HTMLElement } from 'node-html-parser'; export declare const PngFaviconFileSize = 96; export declare const checkSvgFavicon: (baseUrl: string, head: HTMLElement | null, fetcher?: Fetcher) => Promise<DesktopSingleReport>; export declare const checkSvgFaviconFile: (baseUrl: string, url: string, fetcher: Fetcher) => Promise<DesktopSingleReport>; export declare const checkPngFavicon: (baseUrl: string, head: HTMLElement | null, fetcher?: Fetcher) => Promise<DesktopSingleReport>; export declare const checkDesktopFavicon: (baseUrl: string, head: HTMLElement | null, fetcher?: Fetcher) => Promise<DesktopFaviconReport>;