interface IHtmlParserResult {
    comments?: string[];
    html?: null | string;
    nesting?: boolean;
    queue?: Cheerio<any>;
}

Properties

comments?: string[]
html?: null | string
nesting?: boolean
queue?: Cheerio<any>