Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion types/esm/interface/node.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export class Node extends EventTarget implements globalThis.Node {
set textContent(arg: any);
get textContent(): any;
normalize(): void;
cloneNode(): any;
cloneNode(deep?: boolean): any;
contains(): boolean;
/**
* Inserts a node before a reference node as a child of this parent node.
Expand Down
2 changes: 1 addition & 1 deletion types/interface/node.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ export class Node extends EventTarget implements globalThis.Node {
set textContent(arg: any);
get textContent(): any;
normalize(): void;
cloneNode(): any;
cloneNode(deep?: boolean): any;
contains(): boolean;
/**
* Inserts a node before a reference node as a child of this parent node.
Expand Down