We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c938a9a commit 16cddfdCopy full SHA for 16cddfd
1 file changed
lib/container.d.ts
@@ -70,12 +70,10 @@ declare abstract class Container_<Child extends Node = ChildNode> extends Node {
70
): this
71
72
assign(overrides: Container.ContainerProps | object): this
73
+ clone(overrides?: Partial<Container.ContainerProps>): Container<Child>
74
+ cloneAfter(overrides?: Partial<Container.ContainerProps>): Container<Child>
75
+ cloneBefore(overrides?: Partial<Container.ContainerProps>): Container<Child>
76
- clone(overrides?: Partial<Container.ContainerProps>): Container
-
- cloneAfter(overrides?: Partial<Container.ContainerProps>): Container
77
78
- cloneBefore(overrides?: Partial<Container.ContainerProps>): Container
79
/**
80
* Iterates through the container’s immediate children,
81
* calling `callback` for each child.
0 commit comments