/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/manipulation.d.ts (1251B)
import type { Node, Element } from "domhandler"; /** * Remove an element from the dom * * @param elem The element to be removed */ export declare function removeElement(elem: Node): void; /** * Replace an element in the dom * * @param elem The element to be replaced * @param replacement The element to be added */ export declare function replaceElement(elem: Node, replacement: Node): void; /** * Append a child to an element. * * @param elem The element to append to. * @param child The element to be added as a child. */ export declare function appendChild(elem: Element, child: Node): void; /** * Append an element after another. * * @param elem The element to append after. * @param next The element be added. */ export declare function append(elem: Node, next: Node): void; /** * Prepend a child to an element. * * @param elem The element to prepend before. * @param child The element to be added as a child. */ export declare function prependChild(elem: Element, child: Node): void; /** * Prepend an element before another. * * @param elem The element to prepend before. * @param prev The element be added. */ export declare function prepend(elem: Node, prev: Node): void; //# sourceMappingURL=manipulation.d.ts.map