UNPKG

linkinator

Version:

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

8 lines (7 loc) 217 B
import type { Readable } from 'node:stream'; export type ParsedUrl = { link: string; error?: Error; url?: URL; }; export declare function getLinks(source: Readable, baseUrl: string): Promise<ParsedUrl[]>;