From 26a09f08cf1ed43c640879f23fdad56c5c9282f7 Mon Sep 17 00:00:00 2001
From: HelenHuang <LinHuang@pollex.com.tw>
Date: 星期四, 09 六月 2022 15:02:38 +0800
Subject: [PATCH] TODO#139884 Banner 1 文案調整

---
 PAMapp/node_modules/node-html-parser/node_modules/css-select/lib/types.d.ts |   24 ++++++++++++++++++++++++
 1 files changed, 24 insertions(+), 0 deletions(-)

diff --git a/PAMapp/node_modules/node-html-parser/node_modules/css-select/lib/types.d.ts b/PAMapp/node_modules/node-html-parser/node_modules/css-select/lib/types.d.ts
index 814f288..3eb2ec5 100644
--- a/PAMapp/node_modules/node-html-parser/node_modules/css-select/lib/types.d.ts
+++ b/PAMapp/node_modules/node-html-parser/node_modules/css-select/lib/types.d.ts
@@ -34,6 +34,10 @@
      */
     getSiblings: (node: Node) => Node[];
     /**
+     * Returns the previous element sibling of a node.
+     */
+    prevElementSibling?: (node: Node) => ElementNode | null;
+    /**
      * Get the text content of the node, and its children if it has any.
      */
     getText: (node: Node) => string;
@@ -84,6 +88,26 @@
      */
     xmlMode?: boolean;
     /**
+     * Lower-case attribute names.
+     *
+     * @default !xmlMode
+     */
+    lowerCaseAttributeNames?: boolean;
+    /**
+     * Lower-case tag names.
+     *
+     * @default !xmlMode
+     */
+    lowerCaseTags?: boolean;
+    /**
+     * Is the document in quirks mode?
+     *
+     * This will lead to .className and #id being case-insensitive.
+     *
+     * @default false
+     */
+    quirksMode?: boolean;
+    /**
      * The last function in the stack, will be called with the last element
      * that's looked at.
      */

--
Gitblit v1.8.0