Interface ObjectQueryStrategy

interface ObjectQueryStrategy {
    queryExtensionsWithTypesHtml($object: CheerioAPI): null | string;
    queryImplementationsWithTypesHtml($object: CheerioAPI): null | string;
    queryObjectDeprecation($object: CheerioAPI): null | DeprecationContent;
    queryObjectDescription($object: CheerioAPI): Cheerio<Element>;
    queryObjectSignature($object: CheerioAPI): Cheerio<Element>;
    queryTypeParametersHeader($object: CheerioAPI): Cheerio<Element>;
}

Implemented by

Methods