summaryrefslogtreecommitdiff
path: root/includes/external/addressbook/node_modules/domutils/lib/esm/manipulation.d.ts
diff options
context:
space:
mode:
authorRaindropsSys <raindrops@equestria.dev>2023-11-17 23:25:29 +0100
committerRaindropsSys <raindrops@equestria.dev>2023-11-17 23:25:29 +0100
commit953ddd82e48dd206cef5ac94456549aed13b3ad5 (patch)
tree8f003106ee2e7f422e5a22d2ee04d0db302e66c0 /includes/external/addressbook/node_modules/domutils/lib/esm/manipulation.d.ts
parent62a9199846b0c07c03218703b33e8385764f42d9 (diff)
downloadpluralconnect-953ddd82e48dd206cef5ac94456549aed13b3ad5.tar.gz
pluralconnect-953ddd82e48dd206cef5ac94456549aed13b3ad5.tar.bz2
pluralconnect-953ddd82e48dd206cef5ac94456549aed13b3ad5.zip
Updated 30 files and deleted 2976 files (automated)
Diffstat (limited to 'includes/external/addressbook/node_modules/domutils/lib/esm/manipulation.d.ts')
-rw-r--r--includes/external/addressbook/node_modules/domutils/lib/esm/manipulation.d.ts49
1 files changed, 0 insertions, 49 deletions
diff --git a/includes/external/addressbook/node_modules/domutils/lib/esm/manipulation.d.ts b/includes/external/addressbook/node_modules/domutils/lib/esm/manipulation.d.ts
deleted file mode 100644
index 89763f1..0000000
--- a/includes/external/addressbook/node_modules/domutils/lib/esm/manipulation.d.ts
+++ /dev/null
@@ -1,49 +0,0 @@
-import type { ChildNode, Element } from "domhandler";
-/**
- * Remove an element from the dom
- *
- * @category Manipulation
- * @param elem The element to be removed
- */
-export declare function removeElement(elem: ChildNode): void;
-/**
- * Replace an element in the dom
- *
- * @category Manipulation
- * @param elem The element to be replaced
- * @param replacement The element to be added
- */
-export declare function replaceElement(elem: ChildNode, replacement: ChildNode): void;
-/**
- * Append a child to an element.
- *
- * @category Manipulation
- * @param elem The element to append to.
- * @param child The element to be added as a child.
- */
-export declare function appendChild(elem: Element, child: ChildNode): void;
-/**
- * Append an element after another.
- *
- * @category Manipulation
- * @param elem The element to append after.
- * @param next The element be added.
- */
-export declare function append(elem: ChildNode, next: ChildNode): void;
-/**
- * Prepend a child to an element.
- *
- * @category Manipulation
- * @param elem The element to prepend before.
- * @param child The element to be added as a child.
- */
-export declare function prependChild(elem: Element, child: ChildNode): void;
-/**
- * Prepend an element before another.
- *
- * @category Manipulation
- * @param elem The element to prepend before.
- * @param prev The element be added.
- */
-export declare function prepend(elem: ChildNode, prev: ChildNode): void;
-//# sourceMappingURL=manipulation.d.ts.map \ No newline at end of file