UNPKG

yoda-seo-tips

Version:
5 lines (4 loc) 528 B
/// <reference types="cheerio" /> export declare function mustHaveAttribute(tagName: string, attribute: string, message: (errorCount: number) => string): ($: CheerioStatic, report: (msg: string) => void) => void; export declare function mustHaveElement(selector: string, message: () => string): ($: CheerioStatic, report: (msg: string) => void) => void; export declare function mustHaveNoMoreThan(selector: string, howMany: number, message: (n: number) => string): ($: CheerioStatic, report: (msg: string) => void) => void;