@brandup/ui-dom 1.0.23 → 1.0.25
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/types.d.ts +1 -1
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -24,7 +24,7 @@ declare function getByName<TElement extends HTMLElement = HTMLElement>(name: str
|
|
|
24
24
|
declare function getElementByTagName<TElement extends HTMLElement = HTMLElement>(container: Element, tagName: string): TElement | null;
|
|
25
25
|
declare function getElementsByTagName(container: Element, tagName: string): HTMLCollectionOf<Element>;
|
|
26
26
|
declare function queryElement<TElement extends HTMLElement = HTMLElement>(container: Element, query: string): TElement | null;
|
|
27
|
-
declare function queryElements<TElement extends HTMLElement = HTMLElement>(container: Element, query: string): NodeListOf<
|
|
27
|
+
declare function queryElements<TElement extends HTMLElement = HTMLElement>(container: Element, query: string): NodeListOf<TElement>;
|
|
28
28
|
declare function nextElementByClass<TElement extends HTMLElement = HTMLElement>(current: Element, className: string): TElement | null;
|
|
29
29
|
declare function prevElementByClass<TElement extends HTMLElement = HTMLElement>(current: Element, className: string): TElement | null;
|
|
30
30
|
declare function prevElement<TElement extends HTMLElement = HTMLElement>(current: Element): TElement | null;
|