linkinator
Version:
Find broken links, missing images, etc in your HTML. Scurry around your site and find all those broken links.
21 lines (20 loc) • 534 B
TypeScript
export type Flags = {
concurrency?: number;
config?: string;
recurse?: boolean;
skip?: string | string[];
format?: string;
silent?: boolean;
verbosity?: string;
timeout?: number;
markdown?: boolean;
serverRoot?: string;
directoryListing?: boolean;
retry?: boolean;
retryErrors?: boolean;
retryErrorsCount?: number;
retryErrorsJitter?: number;
urlRewriteSearch?: string;
urlRewriteReplace?: string;
};
export declare function getConfig(flags: Flags): Promise<Flags>;