UNPKG

@avenga/linkinator

Version:

Find broken links, missing images, etc in your HTML. Scurry around your site and find all those broken links.

9 lines (8 loc) 261 B
import type { ElementMetadata } from './types.js'; export type ParsedUrl = { link: string; error?: Error; url?: URL; metadata?: ElementMetadata; }; export declare function getLinks(source: ReadableStream, baseUrl: string): Promise<ParsedUrl[]>;