UNPKG

link-checker-cli

Version:

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

19 lines (18 loc) 532 B
import { TaskView } from 'hanji'; export declare class GetUrlsView extends TaskView { private readonly spinner; private timeout; private counter; constructor(); setCounter: (count: number) => void; render(status: 'pending' | 'done'): string; } export declare class CheckLinkView extends TaskView { private linksCount; private readonly spinner; private timeout; private counter; constructor(linksCount: number); increment: () => void; render(status: 'pending' | 'done'): string; }