/var/www/flurhymez/node_modules/domutils/lib
NameSizeModeActions
feeds.d.ts11830644editdlrm
feeds.d.ts.map12930644editdlrm
feeds.js63650644editdlrm
helpers.d.ts21750644editdlrm
helpers.d.ts.map5370644editdlrm
helpers.js45180644editdlrm
index.d.ts3860644editdlrm
index.d.ts.map3550644editdlrm
index.js18480644editdlrm
legacy.d.ts21780644editdlrm
legacy.d.ts.map13360644editdlrm
legacy.js48370644editdlrm
manipulation.d.ts12510644editdlrm
manipulation.d.ts.map6770644editdlrm
manipulation.js33330644editdlrm
querying.d.ts23130644editdlrm
querying.d.ts.map10160644editdlrm
querying.js41530644editdlrm
stringify.d.ts15130644editdlrm
stringify.d.ts.map6530644editdlrm
stringify.js30060644editdlrm
traversal.d.ts20420644editdlrm
traversal.d.ts.map8640644editdlrm
traversal.js34280644editdlrm
Edit: /var/www/flurhymez/node_modules/domutils/lib/legacy.d.ts (2178B)
import { Node, Element } from "domhandler"; import { ElementType } from "domelementtype"; interface TestElementOpts { tag_name?: string | ((name: string) => boolean); tag_type?: string | ((name: string) => boolean); tag_contains?: string | ((data?: string) => boolean); [attributeName: string]: undefined | string | ((attributeValue: string) => boolean); } /** * @param options An object describing nodes to look for. * @param node The element to test. * @returns Whether the element matches the description in `options`. */ export declare function testElement(options: TestElementOpts, node: Node): boolean; /** * @param options An object describing nodes to look for. * @param nodes Nodes to search through. * @param recurse Also consider child nodes. * @param limit Maximum number of nodes to return. * @returns All nodes that match `options`. */ export declare function getElements(options: TestElementOpts, nodes: Node | Node[], recurse: boolean, limit?: number): Node[]; /** * @param id The unique ID attribute value to look for. * @param nodes Nodes to search through. * @param recurse Also consider child nodes. * @returns The node with the supplied ID. */ export declare function getElementById(id: string | ((id: string) => boolean), nodes: Node | Node[], recurse?: boolean): Element | null; /** * @param tagName Tag name to search for. * @param nodes Nodes to search through. * @param recurse Also consider child nodes. * @param limit Maximum number of nodes to return. * @returns All nodes with the supplied `tagName`. */ export declare function getElementsByTagName(tagName: string | ((name: string) => boolean), nodes: Node | Node[], recurse?: boolean, limit?: number): Element[]; /** * @param type Element type to look for. * @param nodes Nodes to search through. * @param recurse Also consider child nodes. * @param limit Maximum number of nodes to return. * @returns All nodes with the supplied `type`. */ export declare function getElementsByTagType(type: ElementType | ((type: ElementType) => boolean), nodes: Node | Node[], recurse?: boolean, limit?: number): Node[]; export {}; //# sourceMappingURL=legacy.d.ts.map