bianco.query
Advanced tools
Comparing version 1.1.3 to 1.1.4
@@ -6,5 +6,5 @@ type Scope = Element | ||
// borrowed from DOM querySelectorAll | ||
declare function $<K extends keyof HTMLElementTagNameMap>(selectors: K, scope?: Scope): NodeListOf<HTMLElementTagNameMap[K]>; | ||
declare function $<K extends keyof SVGElementTagNameMap>(selectors: K, scope?: Scope): NodeListOf<SVGElementTagNameMap[K]>; | ||
declare function $<E extends Element = Element>(selectors: string, scope?: Scope): NodeListOf<E>; | ||
declare function $<K extends keyof HTMLElementTagNameMap>(selectors: K, scope?: Scope): HTMLElementTagNameMap[K][]; | ||
declare function $<K extends keyof SVGElementTagNameMap>(selectors: K, scope?: Scope): SVGElementTagNameMap[K][]; | ||
declare function $<E extends Element = Element>(selectors: string, scope?: Scope): E[]; | ||
declare function $<W extends Window>(selectors: W, scope?: Scope): [W]; | ||
@@ -11,0 +11,0 @@ declare function $<D extends Document>(selectors: D, scope?: Scope): [D]; |
{ | ||
"name": "bianco.query", | ||
"version": "1.1.3", | ||
"version": "1.1.4", | ||
"description": "Modern DOM query selectors helpers written in es2015", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
6105