From 89d2235d1d4d655f3f2a1584f41e7797029c6fc5 Mon Sep 17 00:00:00 2001 From: Kristoffer Date: Wed, 6 Feb 2019 14:32:30 +0100 Subject: [PATCH] Add addPrevSibling typing --- types/libxmljs/index.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/types/libxmljs/index.d.ts b/types/libxmljs/index.d.ts index db37035f06..5ba3fc294f 100644 --- a/types/libxmljs/index.d.ts +++ b/types/libxmljs/index.d.ts @@ -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[];