Add addPrevSibling typing

This commit is contained in:
Kristoffer
2019-02-06 14:32:30 +01:00
parent 94ca481144
commit 89d2235d1d
+1
View File
@@ -116,6 +116,7 @@ export class Element extends Node {
prevElement(): Element|null;
nextElement(): Element|null;
addNextSibling(siblingNode: Node): Node;
addPrevSibling(siblingNode: Node): Node;
find(xpath: string, ns_uri?: string): Node[];
find(xpath: string, namespaces: StringMap): Node[];