UNPKG

link-checker-cli

Version:

CLI tool to check for broken links in a website or project

11 lines (10 loc) 272 B
import { Link } from "../types"; export declare class ParserHtml { parsePage: (page: string, url: URL) => { links: Link[]; ids: string[]; }; private getLinksFromNode; private isImageExtension; } export declare const parserHtml: ParserHtml;