mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-21 03:25:12 +08:00
# Conflicts: # jsowell-ui/.env.development # jsowell-ui/.env.staging # jsowell-ui/bin/build-sit.bat # jsowell-ui/bin/build.bat # jsowell-ui/src/api/adapayMember/adapayMember.js # jsowell-ui/src/api/pile/merchant.js # jsowell-ui/src/router/index.js # jsowell-ui/src/views/financial/financeDetail.vue # jsowell-ui/src/views/financial/merchant.vue # jsowell-ui/src/views/homeIndex/homeIndex.vue # jsowell-ui/src/views/login.vue # jsowell-ui/src/views/pile/basic/detail.vue # jsowell-ui/src/views/pile/station/components/SiteInfo.vue # jsowell-ui/src/views/pile/station/detail.vue # jsowell-ui/src/views/pile/station/orderReport.vue
43 lines
1.2 KiB
TypeScript
43 lines
1.2 KiB
TypeScript
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
|