pwa-helpers
Advanced tools
Comparing version 0.9.0-pre.1 to 0.9.0-pre.2
@@ -37,21 +37,95 @@ /** | ||
accessKey: string; | ||
readonly accessKeyLabel: string; | ||
autocapitalize: string; | ||
contentEditable: string; | ||
readonly dataset: DOMStringMap; | ||
dir: string; | ||
draggable: boolean; | ||
hidden: boolean; | ||
hideFocus: boolean; | ||
innerText: string; | ||
readonly isContentEditable: boolean; | ||
lang: string; | ||
readonly offsetHeight: number; | ||
readonly offsetLeft: number; | ||
readonly offsetParent: Element | null; | ||
readonly offsetParent: Element; | ||
readonly offsetTop: number; | ||
readonly offsetWidth: number; | ||
onabort: ((this: HTMLElement, ev: UIEvent) => any) | null; | ||
onactivate: ((this: HTMLElement, ev: Event) => any) | null; | ||
onbeforeactivate: ((this: HTMLElement, ev: Event) => any) | null; | ||
onbeforecopy: ((this: HTMLElement, ev: Event) => any) | null; | ||
onbeforecut: ((this: HTMLElement, ev: Event) => any) | null; | ||
onbeforedeactivate: ((this: HTMLElement, ev: Event) => any) | null; | ||
onbeforepaste: ((this: HTMLElement, ev: Event) => any) | null; | ||
onblur: ((this: HTMLElement, ev: FocusEvent) => any) | null; | ||
oncanplay: ((this: HTMLElement, ev: Event) => any) | null; | ||
oncanplaythrough: ((this: HTMLElement, ev: Event) => any) | null; | ||
onchange: ((this: HTMLElement, ev: Event) => any) | null; | ||
onclick: ((this: HTMLElement, ev: MouseEvent) => any) | null; | ||
oncontextmenu: ((this: HTMLElement, ev: PointerEvent) => any) | null; | ||
oncopy: ((this: HTMLElement, ev: ClipboardEvent) => any) | null; | ||
oncuechange: ((this: HTMLElement, ev: Event) => any) | null; | ||
oncut: ((this: HTMLElement, ev: ClipboardEvent) => any) | null; | ||
ondblclick: ((this: HTMLElement, ev: MouseEvent) => any) | null; | ||
ondeactivate: ((this: HTMLElement, ev: Event) => any) | null; | ||
ondrag: ((this: HTMLElement, ev: DragEvent) => any) | null; | ||
ondragend: ((this: HTMLElement, ev: DragEvent) => any) | null; | ||
ondragenter: ((this: HTMLElement, ev: DragEvent) => any) | null; | ||
ondragleave: ((this: HTMLElement, ev: DragEvent) => any) | null; | ||
ondragover: ((this: HTMLElement, ev: DragEvent) => any) | null; | ||
ondragstart: ((this: HTMLElement, ev: DragEvent) => any) | null; | ||
ondrop: ((this: HTMLElement, ev: DragEvent) => any) | null; | ||
ondurationchange: ((this: HTMLElement, ev: Event) => any) | null; | ||
onemptied: ((this: HTMLElement, ev: Event) => any) | null; | ||
onended: ((this: HTMLElement, ev: Event) => any) | null; | ||
onerror: ((this: HTMLElement, ev: ErrorEvent) => any) | null; | ||
onfocus: ((this: HTMLElement, ev: FocusEvent) => any) | null; | ||
oninput: ((this: HTMLElement, ev: Event) => any) | null; | ||
oninvalid: ((this: HTMLElement, ev: Event) => any) | null; | ||
onkeydown: ((this: HTMLElement, ev: KeyboardEvent) => any) | null; | ||
onkeypress: ((this: HTMLElement, ev: KeyboardEvent) => any) | null; | ||
onkeyup: ((this: HTMLElement, ev: KeyboardEvent) => any) | null; | ||
onload: ((this: HTMLElement, ev: Event) => any) | null; | ||
onloadeddata: ((this: HTMLElement, ev: Event) => any) | null; | ||
onloadedmetadata: ((this: HTMLElement, ev: Event) => any) | null; | ||
onloadstart: ((this: HTMLElement, ev: Event) => any) | null; | ||
onmousedown: ((this: HTMLElement, ev: MouseEvent) => any) | null; | ||
onmouseenter: ((this: HTMLElement, ev: MouseEvent) => any) | null; | ||
onmouseleave: ((this: HTMLElement, ev: MouseEvent) => any) | null; | ||
onmousemove: ((this: HTMLElement, ev: MouseEvent) => any) | null; | ||
onmouseout: ((this: HTMLElement, ev: MouseEvent) => any) | null; | ||
onmouseover: ((this: HTMLElement, ev: MouseEvent) => any) | null; | ||
onmouseup: ((this: HTMLElement, ev: MouseEvent) => any) | null; | ||
onmousewheel: ((this: HTMLElement, ev: WheelEvent) => any) | null; | ||
onmscontentzoom: ((this: HTMLElement, ev: Event) => any) | null; | ||
onmsmanipulationstatechanged: ((this: HTMLElement, ev: Event) => any) | null; | ||
onpaste: ((this: HTMLElement, ev: ClipboardEvent) => any) | null; | ||
onpause: ((this: HTMLElement, ev: Event) => any) | null; | ||
onplay: ((this: HTMLElement, ev: Event) => any) | null; | ||
onplaying: ((this: HTMLElement, ev: Event) => any) | null; | ||
onprogress: ((this: HTMLElement, ev: ProgressEvent) => any) | null; | ||
onratechange: ((this: HTMLElement, ev: Event) => any) | null; | ||
onreset: ((this: HTMLElement, ev: Event) => any) | null; | ||
onscroll: ((this: HTMLElement, ev: UIEvent) => any) | null; | ||
onseeked: ((this: HTMLElement, ev: Event) => any) | null; | ||
onseeking: ((this: HTMLElement, ev: Event) => any) | null; | ||
onselect: ((this: HTMLElement, ev: UIEvent) => any) | null; | ||
onselectstart: ((this: HTMLElement, ev: Event) => any) | null; | ||
onstalled: ((this: HTMLElement, ev: Event) => any) | null; | ||
onsubmit: ((this: HTMLElement, ev: Event) => any) | null; | ||
onsuspend: ((this: HTMLElement, ev: Event) => any) | null; | ||
ontimeupdate: ((this: HTMLElement, ev: Event) => any) | null; | ||
onvolumechange: ((this: HTMLElement, ev: Event) => any) | null; | ||
onwaiting: ((this: HTMLElement, ev: Event) => any) | null; | ||
outerText: string; | ||
spellcheck: boolean; | ||
tabIndex: number; | ||
title: string; | ||
translate: boolean; | ||
blur(): void; | ||
click(): void; | ||
addEventListener<K extends "resize" | "waiting" | "error" | "abort" | "cancel" | "progress" | "ended" | "change" | "input" | "select" | "fullscreenchange" | "fullscreenerror" | "animationcancel" | "animationend" | "animationiteration" | "animationstart" | "auxclick" | "blur" | "canplay" | "canplaythrough" | "click" | "close" | "contextmenu" | "cuechange" | "dblclick" | "drag" | "dragend" | "dragenter" | "dragexit" | "dragleave" | "dragover" | "dragstart" | "drop" | "durationchange" | "emptied" | "focus" | "gotpointercapture" | "invalid" | "keydown" | "keypress" | "keyup" | "load" | "loadeddata" | "loadedmetadata" | "loadend" | "loadstart" | "lostpointercapture" | "mousedown" | "mouseenter" | "mouseleave" | "mousemove" | "mouseout" | "mouseover" | "mouseup" | "pause" | "play" | "playing" | "pointercancel" | "pointerdown" | "pointerenter" | "pointerleave" | "pointermove" | "pointerout" | "pointerover" | "pointerup" | "ratechange" | "reset" | "scroll" | "securitypolicyviolation" | "seeked" | "seeking" | "stalled" | "submit" | "suspend" | "timeupdate" | "toggle" | "touchcancel" | "touchend" | "touchmove" | "touchstart" | "transitioncancel" | "transitionend" | "transitionrun" | "transitionstart" | "volumechange" | "wheel" | "copy" | "cut" | "paste">(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions | undefined): void; | ||
dragDrop(): boolean; | ||
focus(): void; | ||
msGetInputContext(): MSInputMethodContext; | ||
addEventListener<K extends "waiting" | "error" | "abort" | "progress" | "ended" | "change" | "input" | "select" | "activate" | "beforeactivate" | "beforedeactivate" | "blur" | "canplay" | "canplaythrough" | "click" | "contextmenu" | "dblclick" | "deactivate" | "drag" | "dragend" | "dragenter" | "dragleave" | "dragover" | "dragstart" | "drop" | "durationchange" | "emptied" | "focus" | "invalid" | "keydown" | "keypress" | "keyup" | "load" | "loadeddata" | "loadedmetadata" | "loadstart" | "mousedown" | "mousemove" | "mouseout" | "mouseover" | "mouseup" | "mousewheel" | "MSContentZoom" | "MSGestureChange" | "MSGestureDoubleTap" | "MSGestureEnd" | "MSGestureHold" | "MSGestureStart" | "MSGestureTap" | "MSInertiaStart" | "MSManipulationStateChanged" | "MSPointerCancel" | "MSPointerDown" | "MSPointerEnter" | "MSPointerLeave" | "MSPointerMove" | "MSPointerOut" | "MSPointerOver" | "MSPointerUp" | "pause" | "play" | "playing" | "ratechange" | "reset" | "scroll" | "seeked" | "seeking" | "selectstart" | "stalled" | "submit" | "suspend" | "timeupdate" | "touchcancel" | "touchend" | "touchmove" | "touchstart" | "volumechange" | "webkitfullscreenchange" | "webkitfullscreenerror" | "animationcancel" | "animationend" | "animationiteration" | "animationstart" | "gotpointercapture" | "lostpointercapture" | "pointercancel" | "pointerdown" | "pointerenter" | "pointerleave" | "pointermove" | "pointerout" | "pointerover" | "pointerup" | "transitioncancel" | "transitionend" | "transitionrun" | "transitionstart" | "wheel" | "ariarequest" | "command" | "MSGotPointerCapture" | "MSLostPointerCapture" | "beforecopy" | "beforecut" | "beforepaste" | "copy" | "cuechange" | "cut" | "mouseenter" | "mouseleave" | "paste">(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | AddEventListenerOptions | undefined): void; | ||
addEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions | undefined): void; | ||
removeEventListener<K extends "resize" | "waiting" | "error" | "abort" | "cancel" | "progress" | "ended" | "change" | "input" | "select" | "fullscreenchange" | "fullscreenerror" | "animationcancel" | "animationend" | "animationiteration" | "animationstart" | "auxclick" | "blur" | "canplay" | "canplaythrough" | "click" | "close" | "contextmenu" | "cuechange" | "dblclick" | "drag" | "dragend" | "dragenter" | "dragexit" | "dragleave" | "dragover" | "dragstart" | "drop" | "durationchange" | "emptied" | "focus" | "gotpointercapture" | "invalid" | "keydown" | "keypress" | "keyup" | "load" | "loadeddata" | "loadedmetadata" | "loadend" | "loadstart" | "lostpointercapture" | "mousedown" | "mouseenter" | "mouseleave" | "mousemove" | "mouseout" | "mouseover" | "mouseup" | "pause" | "play" | "playing" | "pointercancel" | "pointerdown" | "pointerenter" | "pointerleave" | "pointermove" | "pointerout" | "pointerover" | "pointerup" | "ratechange" | "reset" | "scroll" | "securitypolicyviolation" | "seeked" | "seeking" | "stalled" | "submit" | "suspend" | "timeupdate" | "toggle" | "touchcancel" | "touchend" | "touchmove" | "touchstart" | "transitioncancel" | "transitionend" | "transitionrun" | "transitionstart" | "volumechange" | "wheel" | "copy" | "cut" | "paste">(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions | undefined): void; | ||
removeEventListener<K extends "waiting" | "error" | "abort" | "progress" | "ended" | "change" | "input" | "select" | "activate" | "beforeactivate" | "beforedeactivate" | "blur" | "canplay" | "canplaythrough" | "click" | "contextmenu" | "dblclick" | "deactivate" | "drag" | "dragend" | "dragenter" | "dragleave" | "dragover" | "dragstart" | "drop" | "durationchange" | "emptied" | "focus" | "invalid" | "keydown" | "keypress" | "keyup" | "load" | "loadeddata" | "loadedmetadata" | "loadstart" | "mousedown" | "mousemove" | "mouseout" | "mouseover" | "mouseup" | "mousewheel" | "MSContentZoom" | "MSGestureChange" | "MSGestureDoubleTap" | "MSGestureEnd" | "MSGestureHold" | "MSGestureStart" | "MSGestureTap" | "MSInertiaStart" | "MSManipulationStateChanged" | "MSPointerCancel" | "MSPointerDown" | "MSPointerEnter" | "MSPointerLeave" | "MSPointerMove" | "MSPointerOut" | "MSPointerOver" | "MSPointerUp" | "pause" | "play" | "playing" | "ratechange" | "reset" | "scroll" | "seeked" | "seeking" | "selectstart" | "stalled" | "submit" | "suspend" | "timeupdate" | "touchcancel" | "touchend" | "touchmove" | "touchstart" | "volumechange" | "webkitfullscreenchange" | "webkitfullscreenerror" | "animationcancel" | "animationend" | "animationiteration" | "animationstart" | "gotpointercapture" | "lostpointercapture" | "pointercancel" | "pointerdown" | "pointerenter" | "pointerleave" | "pointermove" | "pointerout" | "pointerover" | "pointerup" | "transitioncancel" | "transitionend" | "transitionrun" | "transitionstart" | "wheel" | "ariarequest" | "command" | "MSGotPointerCapture" | "MSLostPointerCapture" | "beforecopy" | "beforecut" | "beforepaste" | "copy" | "cuechange" | "cut" | "mouseenter" | "mouseleave" | "paste">(type: K, listener: (this: HTMLElement, ev: HTMLElementEventMap[K]) => any, options?: boolean | EventListenerOptions | undefined): void; | ||
removeEventListener(type: string, listener: EventListenerOrEventListenerObject, options?: boolean | EventListenerOptions | undefined): void; | ||
@@ -68,6 +142,25 @@ readonly assignedSlot: HTMLSlotElement | null; | ||
innerHTML: string; | ||
readonly localName: string; | ||
readonly namespaceURI: string | null; | ||
onfullscreenchange: ((this: Element, ev: Event) => any) | null; | ||
onfullscreenerror: ((this: Element, ev: Event) => any) | null; | ||
msContentZoomFactor: number; | ||
readonly msRegionOverflow: string; | ||
onariarequest: ((this: Element, ev: Event) => any) | null; | ||
oncommand: ((this: Element, ev: Event) => any) | null; | ||
onmsgesturechange: ((this: Element, ev: Event) => any) | null; | ||
onmsgesturedoubletap: ((this: Element, ev: Event) => any) | null; | ||
onmsgestureend: ((this: Element, ev: Event) => any) | null; | ||
onmsgesturehold: ((this: Element, ev: Event) => any) | null; | ||
onmsgesturestart: ((this: Element, ev: Event) => any) | null; | ||
onmsgesturetap: ((this: Element, ev: Event) => any) | null; | ||
onmsgotpointercapture: ((this: Element, ev: Event) => any) | null; | ||
onmsinertiastart: ((this: Element, ev: Event) => any) | null; | ||
onmslostpointercapture: ((this: Element, ev: Event) => any) | null; | ||
onmspointercancel: ((this: Element, ev: Event) => any) | null; | ||
onmspointerdown: ((this: Element, ev: Event) => any) | null; | ||
onmspointerenter: ((this: Element, ev: Event) => any) | null; | ||
onmspointerleave: ((this: Element, ev: Event) => any) | null; | ||
onmspointermove: ((this: Element, ev: Event) => any) | null; | ||
onmspointerout: ((this: Element, ev: Event) => any) | null; | ||
onmspointerover: ((this: Element, ev: Event) => any) | null; | ||
onmspointerup: ((this: Element, ev: Event) => any) | null; | ||
onwebkitfullscreenchange: ((this: Element, ev: Event) => any) | null; | ||
onwebkitfullscreenerror: ((this: Element, ev: Event) => any) | null; | ||
outerHTML: string; | ||
@@ -83,21 +176,20 @@ readonly prefix: string | null; | ||
attachShadow(shadowRootInitDict: ShadowRootInit): ShadowRoot; | ||
closest<K extends "object" | "font" | "track" | "progress" | "a" | "abbr" | "address" | "applet" | "area" | "article" | "aside" | "audio" | "b" | "base" | "basefont" | "bdo" | "blockquote" | "body" | "br" | "button" | "canvas" | "caption" | "cite" | "code" | "col" | "colgroup" | "data" | "datalist" | "dd" | "del" | "details" | "dfn" | "dialog" | "dir" | "div" | "dl" | "dt" | "em" | "embed" | "fieldset" | "figcaption" | "figure" | "footer" | "form" | "frame" | "frameset" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "head" | "header" | "hgroup" | "hr" | "html" | "i" | "iframe" | "img" | "input" | "ins" | "kbd" | "label" | "legend" | "li" | "link" | "map" | "mark" | "marquee" | "menu" | "meta" | "meter" | "nav" | "noscript" | "ol" | "optgroup" | "option" | "output" | "p" | "param" | "picture" | "pre" | "q" | "rt" | "ruby" | "s" | "samp" | "script" | "section" | "select" | "slot" | "small" | "source" | "span" | "strong" | "style" | "sub" | "sup" | "table" | "tbody" | "td" | "template" | "textarea" | "tfoot" | "th" | "thead" | "time" | "title" | "tr" | "u" | "ul" | "var" | "video" | "wbr">(selector: K): HTMLElementTagNameMap[K] | null; | ||
closest<K extends "object" | "font" | "track" | "center" | "progress" | "a" | "abbr" | "acronym" | "address" | "applet" | "area" | "article" | "aside" | "audio" | "b" | "base" | "basefont" | "bdo" | "big" | "blockquote" | "body" | "br" | "button" | "canvas" | "caption" | "cite" | "code" | "col" | "colgroup" | "data" | "datalist" | "dd" | "del" | "dfn" | "dir" | "div" | "dl" | "dt" | "em" | "embed" | "fieldset" | "figcaption" | "figure" | "footer" | "form" | "frame" | "frameset" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "head" | "header" | "hgroup" | "hr" | "html" | "i" | "iframe" | "img" | "input" | "ins" | "isindex" | "kbd" | "keygen" | "label" | "legend" | "li" | "link" | "listing" | "map" | "mark" | "marquee" | "menu" | "meta" | "meter" | "nav" | "nextid" | "nobr" | "noframes" | "noscript" | "ol" | "optgroup" | "option" | "output" | "p" | "param" | "picture" | "plaintext" | "pre" | "q" | "rt" | "ruby" | "s" | "samp" | "script" | "section" | "select" | "slot" | "small" | "source" | "span" | "strike" | "strong" | "style" | "sub" | "sup" | "table" | "tbody" | "td" | "template" | "textarea" | "tfoot" | "th" | "thead" | "time" | "title" | "tr" | "tt" | "u" | "ul" | "var" | "video" | "wbr" | "xmp">(selector: K): HTMLElementTagNameMap[K] | null; | ||
closest<K extends "symbol" | "clipPath" | "filter" | "marker" | "mask" | "circle" | "defs" | "desc" | "ellipse" | "feBlend" | "feColorMatrix" | "feComponentTransfer" | "feComposite" | "feConvolveMatrix" | "feDiffuseLighting" | "feDisplacementMap" | "feDistantLight" | "feFlood" | "feFuncA" | "feFuncB" | "feFuncG" | "feFuncR" | "feGaussianBlur" | "feImage" | "feMerge" | "feMergeNode" | "feMorphology" | "feOffset" | "fePointLight" | "feSpecularLighting" | "feSpotLight" | "feTile" | "feTurbulence" | "foreignObject" | "g" | "image" | "line" | "linearGradient" | "path" | "metadata" | "pattern" | "polygon" | "polyline" | "radialGradient" | "rect" | "svg" | "stop" | "switch" | "tspan" | "text" | "textPath" | "use" | "view">(selector: K): SVGElementTagNameMap[K] | null; | ||
closest(selector: string): Element | null; | ||
getAttribute(qualifiedName: string): string | null; | ||
getAttributeNS(namespace: string | null, localName: string): string | null; | ||
getAttributeNames(): string[]; | ||
getAttributeNS(namespaceURI: string, localName: string): string; | ||
getAttributeNode(name: string): Attr | null; | ||
getAttributeNodeNS(namespaceURI: string, localName: string): Attr | null; | ||
getBoundingClientRect(): DOMRect | ClientRect; | ||
getBoundingClientRect(): ClientRect | DOMRect; | ||
getClientRects(): ClientRectList | DOMRectList; | ||
getElementsByClassName(classNames: string): HTMLCollectionOf<Element>; | ||
getElementsByTagName<K extends "object" | "font" | "track" | "progress" | "a" | "abbr" | "address" | "applet" | "area" | "article" | "aside" | "audio" | "b" | "base" | "basefont" | "bdo" | "blockquote" | "body" | "br" | "button" | "canvas" | "caption" | "cite" | "code" | "col" | "colgroup" | "data" | "datalist" | "dd" | "del" | "details" | "dfn" | "dialog" | "dir" | "div" | "dl" | "dt" | "em" | "embed" | "fieldset" | "figcaption" | "figure" | "footer" | "form" | "frame" | "frameset" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "head" | "header" | "hgroup" | "hr" | "html" | "i" | "iframe" | "img" | "input" | "ins" | "kbd" | "label" | "legend" | "li" | "link" | "map" | "mark" | "marquee" | "menu" | "meta" | "meter" | "nav" | "noscript" | "ol" | "optgroup" | "option" | "output" | "p" | "param" | "picture" | "pre" | "q" | "rt" | "ruby" | "s" | "samp" | "script" | "section" | "select" | "slot" | "small" | "source" | "span" | "strong" | "style" | "sub" | "sup" | "table" | "tbody" | "td" | "template" | "textarea" | "tfoot" | "th" | "thead" | "time" | "title" | "tr" | "u" | "ul" | "var" | "video" | "wbr">(qualifiedName: K): HTMLCollectionOf<HTMLElementTagNameMap[K]>; | ||
getElementsByTagName<K extends "symbol" | "clipPath" | "filter" | "marker" | "mask" | "circle" | "defs" | "desc" | "ellipse" | "feBlend" | "feColorMatrix" | "feComponentTransfer" | "feComposite" | "feConvolveMatrix" | "feDiffuseLighting" | "feDisplacementMap" | "feDistantLight" | "feFlood" | "feFuncA" | "feFuncB" | "feFuncG" | "feFuncR" | "feGaussianBlur" | "feImage" | "feMerge" | "feMergeNode" | "feMorphology" | "feOffset" | "fePointLight" | "feSpecularLighting" | "feSpotLight" | "feTile" | "feTurbulence" | "foreignObject" | "g" | "image" | "line" | "linearGradient" | "path" | "metadata" | "pattern" | "polygon" | "polyline" | "radialGradient" | "rect" | "svg" | "stop" | "switch" | "tspan" | "text" | "textPath" | "use" | "view">(qualifiedName: K): HTMLCollectionOf<SVGElementTagNameMap[K]>; | ||
getElementsByTagName(qualifiedName: string): HTMLCollectionOf<Element>; | ||
getElementsByClassName(classNames: string): NodeListOf<Element>; | ||
getElementsByTagName<K extends "object" | "font" | "track" | "center" | "progress" | "a" | "abbr" | "acronym" | "address" | "applet" | "area" | "article" | "aside" | "audio" | "b" | "base" | "basefont" | "bdo" | "big" | "blockquote" | "body" | "br" | "button" | "canvas" | "caption" | "cite" | "code" | "col" | "colgroup" | "data" | "datalist" | "dd" | "del" | "dfn" | "dir" | "div" | "dl" | "dt" | "em" | "embed" | "fieldset" | "figcaption" | "figure" | "footer" | "form" | "frame" | "frameset" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "head" | "header" | "hgroup" | "hr" | "html" | "i" | "iframe" | "img" | "input" | "ins" | "isindex" | "kbd" | "keygen" | "label" | "legend" | "li" | "link" | "listing" | "map" | "mark" | "marquee" | "menu" | "meta" | "meter" | "nav" | "nextid" | "nobr" | "noframes" | "noscript" | "ol" | "optgroup" | "option" | "output" | "p" | "param" | "picture" | "plaintext" | "pre" | "q" | "rt" | "ruby" | "s" | "samp" | "script" | "section" | "select" | "slot" | "small" | "source" | "span" | "strike" | "strong" | "style" | "sub" | "sup" | "table" | "tbody" | "td" | "template" | "textarea" | "tfoot" | "th" | "thead" | "time" | "title" | "tr" | "tt" | "u" | "ul" | "var" | "video" | "wbr" | "xmp">(name: K): NodeListOf<HTMLElementTagNameMap[K]>; | ||
getElementsByTagName<K extends "symbol" | "clipPath" | "filter" | "marker" | "mask" | "circle" | "defs" | "desc" | "ellipse" | "feBlend" | "feColorMatrix" | "feComponentTransfer" | "feComposite" | "feConvolveMatrix" | "feDiffuseLighting" | "feDisplacementMap" | "feDistantLight" | "feFlood" | "feFuncA" | "feFuncB" | "feFuncG" | "feFuncR" | "feGaussianBlur" | "feImage" | "feMerge" | "feMergeNode" | "feMorphology" | "feOffset" | "fePointLight" | "feSpecularLighting" | "feSpotLight" | "feTile" | "feTurbulence" | "foreignObject" | "g" | "image" | "line" | "linearGradient" | "path" | "metadata" | "pattern" | "polygon" | "polyline" | "radialGradient" | "rect" | "svg" | "stop" | "switch" | "tspan" | "text" | "textPath" | "use" | "view">(name: K): NodeListOf<SVGElementTagNameMap[K]>; | ||
getElementsByTagName(name: string): NodeListOf<Element>; | ||
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/1999/xhtml", localName: string): HTMLCollectionOf<HTMLElement>; | ||
getElementsByTagNameNS(namespaceURI: "http://www.w3.org/2000/svg", localName: string): HTMLCollectionOf<SVGElement>; | ||
getElementsByTagNameNS(namespaceURI: string, localName: string): HTMLCollectionOf<Element>; | ||
hasAttribute(qualifiedName: string): boolean; | ||
hasAttributeNS(namespace: string | null, localName: string): boolean; | ||
hasAttribute(name: string): boolean; | ||
hasAttributeNS(namespaceURI: string, localName: string): boolean; | ||
hasAttributes(): boolean; | ||
@@ -110,7 +202,13 @@ hasPointerCapture(pointerId: number): boolean; | ||
msGetRegionContent(): any; | ||
msGetUntransformedBounds(): ClientRect; | ||
msMatchesSelector(selectors: string): boolean; | ||
msReleasePointerCapture(pointerId: number): void; | ||
msSetPointerCapture(pointerId: number): void; | ||
msZoomTo(args: MsZoomToOptions): void; | ||
releasePointerCapture(pointerId: number): void; | ||
removeAttribute(qualifiedName: string): void; | ||
removeAttributeNS(namespace: string | null, localName: string): void; | ||
removeAttributeNode(attr: Attr): Attr; | ||
requestFullscreen(): Promise<void>; | ||
removeAttributeNS(namespaceURI: string, localName: string): void; | ||
removeAttributeNode(oldAttr: Attr): Attr; | ||
requestFullscreen(): void; | ||
requestPointerLock(): void; | ||
scroll(options?: ScrollToOptions | undefined): void; | ||
@@ -124,13 +222,16 @@ scroll(x: number, y: number): void; | ||
setAttribute(qualifiedName: string, value: string): void; | ||
setAttributeNS(namespace: string | null, qualifiedName: string, value: string): void; | ||
setAttributeNode(attr: Attr): Attr | null; | ||
setAttributeNodeNS(attr: Attr): Attr | null; | ||
setAttributeNS(namespaceURI: string, qualifiedName: string, value: string): void; | ||
setAttributeNode(newAttr: Attr): Attr; | ||
setAttributeNodeNS(newAttr: Attr): Attr; | ||
setPointerCapture(pointerId: number): void; | ||
toggleAttribute(qualifiedName: string, force?: boolean | undefined): boolean; | ||
webkitMatchesSelector(selectors: string): boolean; | ||
readonly baseURI: string; | ||
readonly childNodes: NodeListOf<ChildNode>; | ||
readonly firstChild: ChildNode | null; | ||
webkitRequestFullScreen(): void; | ||
webkitRequestFullscreen(): void; | ||
readonly baseURI: string | null; | ||
readonly childNodes: NodeListOf<Node & ChildNode>; | ||
readonly firstChild: Node | null; | ||
readonly isConnected: boolean; | ||
readonly lastChild: ChildNode | null; | ||
readonly lastChild: Node | null; | ||
readonly localName: string | null; | ||
readonly namespaceURI: string | null; | ||
readonly nextSibling: Node | null; | ||
@@ -140,5 +241,5 @@ readonly nodeName: string; | ||
nodeValue: string | null; | ||
readonly ownerDocument: Document | null; | ||
readonly ownerDocument: Document; | ||
readonly parentElement: HTMLElement | null; | ||
readonly parentNode: (Node & ParentNode) | null; | ||
readonly parentNode: Node | null; | ||
readonly previousSibling: Node | null; | ||
@@ -149,11 +250,10 @@ textContent: string | null; | ||
compareDocumentPosition(other: Node): number; | ||
contains(other: Node | null): boolean; | ||
getRootNode(options?: GetRootNodeOptions | undefined): Node; | ||
contains(child: Node): boolean; | ||
hasChildNodes(): boolean; | ||
insertBefore<T extends Node>(newChild: T, refChild: Node | null): T; | ||
isDefaultNamespace(namespace: string | null): boolean; | ||
isEqualNode(otherNode: Node | null): boolean; | ||
isSameNode(otherNode: Node | null): boolean; | ||
isDefaultNamespace(namespaceURI: string | null): boolean; | ||
isEqualNode(arg: Node): boolean; | ||
isSameNode(other: Node): boolean; | ||
lookupNamespaceURI(prefix: string | null): string | null; | ||
lookupPrefix(namespace: string | null): string | null; | ||
lookupPrefix(namespaceURI: string | null): string | null; | ||
normalize(): void; | ||
@@ -180,24 +280,3 @@ removeChild<T extends Node>(oldChild: T): T; | ||
readonly TEXT_NODE: number; | ||
dispatchEvent(event: Event): boolean; | ||
readonly childElementCount: number; | ||
readonly children: HTMLCollection; | ||
readonly firstElementChild: Element | null; | ||
readonly lastElementChild: Element | null; | ||
append(...nodes: (string | Node)[]): void; | ||
prepend(...nodes: (string | Node)[]): void; | ||
querySelector<K extends "object" | "font" | "track" | "progress" | "a" | "abbr" | "address" | "applet" | "area" | "article" | "aside" | "audio" | "b" | "base" | "basefont" | "bdo" | "blockquote" | "body" | "br" | "button" | "canvas" | "caption" | "cite" | "code" | "col" | "colgroup" | "data" | "datalist" | "dd" | "del" | "details" | "dfn" | "dialog" | "dir" | "div" | "dl" | "dt" | "em" | "embed" | "fieldset" | "figcaption" | "figure" | "footer" | "form" | "frame" | "frameset" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "head" | "header" | "hgroup" | "hr" | "html" | "i" | "iframe" | "img" | "input" | "ins" | "kbd" | "label" | "legend" | "li" | "link" | "map" | "mark" | "marquee" | "menu" | "meta" | "meter" | "nav" | "noscript" | "ol" | "optgroup" | "option" | "output" | "p" | "param" | "picture" | "pre" | "q" | "rt" | "ruby" | "s" | "samp" | "script" | "section" | "select" | "slot" | "small" | "source" | "span" | "strong" | "style" | "sub" | "sup" | "table" | "tbody" | "td" | "template" | "textarea" | "tfoot" | "th" | "thead" | "time" | "title" | "tr" | "u" | "ul" | "var" | "video" | "wbr">(selectors: K): HTMLElementTagNameMap[K] | null; | ||
querySelector<K extends "symbol" | "clipPath" | "filter" | "marker" | "mask" | "circle" | "defs" | "desc" | "ellipse" | "feBlend" | "feColorMatrix" | "feComponentTransfer" | "feComposite" | "feConvolveMatrix" | "feDiffuseLighting" | "feDisplacementMap" | "feDistantLight" | "feFlood" | "feFuncA" | "feFuncB" | "feFuncG" | "feFuncR" | "feGaussianBlur" | "feImage" | "feMerge" | "feMergeNode" | "feMorphology" | "feOffset" | "fePointLight" | "feSpecularLighting" | "feSpotLight" | "feTile" | "feTurbulence" | "foreignObject" | "g" | "image" | "line" | "linearGradient" | "path" | "metadata" | "pattern" | "polygon" | "polyline" | "radialGradient" | "rect" | "svg" | "stop" | "switch" | "tspan" | "text" | "textPath" | "use" | "view">(selectors: K): SVGElementTagNameMap[K] | null; | ||
querySelector<E extends Element = Element>(selectors: string): E | null; | ||
querySelectorAll<K extends "object" | "font" | "track" | "progress" | "a" | "abbr" | "address" | "applet" | "area" | "article" | "aside" | "audio" | "b" | "base" | "basefont" | "bdo" | "blockquote" | "body" | "br" | "button" | "canvas" | "caption" | "cite" | "code" | "col" | "colgroup" | "data" | "datalist" | "dd" | "del" | "details" | "dfn" | "dialog" | "dir" | "div" | "dl" | "dt" | "em" | "embed" | "fieldset" | "figcaption" | "figure" | "footer" | "form" | "frame" | "frameset" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "head" | "header" | "hgroup" | "hr" | "html" | "i" | "iframe" | "img" | "input" | "ins" | "kbd" | "label" | "legend" | "li" | "link" | "map" | "mark" | "marquee" | "menu" | "meta" | "meter" | "nav" | "noscript" | "ol" | "optgroup" | "option" | "output" | "p" | "param" | "picture" | "pre" | "q" | "rt" | "ruby" | "s" | "samp" | "script" | "section" | "select" | "slot" | "small" | "source" | "span" | "strong" | "style" | "sub" | "sup" | "table" | "tbody" | "td" | "template" | "textarea" | "tfoot" | "th" | "thead" | "time" | "title" | "tr" | "u" | "ul" | "var" | "video" | "wbr">(selectors: K): NodeListOf<HTMLElementTagNameMap[K]>; | ||
querySelectorAll<K extends "symbol" | "clipPath" | "filter" | "marker" | "mask" | "circle" | "defs" | "desc" | "ellipse" | "feBlend" | "feColorMatrix" | "feComponentTransfer" | "feComposite" | "feConvolveMatrix" | "feDiffuseLighting" | "feDisplacementMap" | "feDistantLight" | "feFlood" | "feFuncA" | "feFuncB" | "feFuncG" | "feFuncR" | "feGaussianBlur" | "feImage" | "feMerge" | "feMergeNode" | "feMorphology" | "feOffset" | "fePointLight" | "feSpecularLighting" | "feSpotLight" | "feTile" | "feTurbulence" | "foreignObject" | "g" | "image" | "line" | "linearGradient" | "path" | "metadata" | "pattern" | "polygon" | "polyline" | "radialGradient" | "rect" | "svg" | "stop" | "switch" | "tspan" | "text" | "textPath" | "use" | "view">(selectors: K): NodeListOf<SVGElementTagNameMap[K]>; | ||
querySelectorAll<E extends Element = Element>(selectors: string): NodeListOf<E>; | ||
readonly nextElementSibling: Element | null; | ||
readonly previousElementSibling: Element | null; | ||
after(...nodes: (string | Node)[]): void; | ||
before(...nodes: (string | Node)[]): void; | ||
remove(): void; | ||
replaceWith(...nodes: (string | Node)[]): void; | ||
animate(keyframes: PropertyIndexedKeyframes | Keyframe[] | null, options?: number | KeyframeAnimationOptions | undefined): Animation; | ||
getAnimations(): Animation[]; | ||
onabort: ((this: GlobalEventHandlers, ev: UIEvent) => any) | null; | ||
dispatchEvent(evt: Event): boolean; | ||
onanimationcancel: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null; | ||
@@ -207,48 +286,4 @@ onanimationend: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null; | ||
onanimationstart: ((this: GlobalEventHandlers, ev: AnimationEvent) => any) | null; | ||
onauxclick: ((this: GlobalEventHandlers, ev: Event) => any) | null; | ||
onblur: ((this: GlobalEventHandlers, ev: FocusEvent) => any) | null; | ||
oncancel: ((this: GlobalEventHandlers, ev: Event) => any) | null; | ||
oncanplay: ((this: GlobalEventHandlers, ev: Event) => any) | null; | ||
oncanplaythrough: ((this: GlobalEventHandlers, ev: Event) => any) | null; | ||
onchange: ((this: GlobalEventHandlers, ev: Event) => any) | null; | ||
onclick: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null; | ||
onclose: ((this: GlobalEventHandlers, ev: Event) => any) | null; | ||
oncontextmenu: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null; | ||
oncuechange: ((this: GlobalEventHandlers, ev: Event) => any) | null; | ||
ondblclick: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null; | ||
ondrag: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null; | ||
ondragend: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null; | ||
ondragenter: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null; | ||
ondragexit: ((this: GlobalEventHandlers, ev: Event) => any) | null; | ||
ondragleave: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null; | ||
ondragover: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null; | ||
ondragstart: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null; | ||
ondrop: ((this: GlobalEventHandlers, ev: DragEvent) => any) | null; | ||
ondurationchange: ((this: GlobalEventHandlers, ev: Event) => any) | null; | ||
onemptied: ((this: GlobalEventHandlers, ev: Event) => any) | null; | ||
onended: ((this: GlobalEventHandlers, ev: Event) => any) | null; | ||
onerror: ErrorEventHandler; | ||
onfocus: ((this: GlobalEventHandlers, ev: FocusEvent) => any) | null; | ||
ongotpointercapture: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null; | ||
oninput: ((this: GlobalEventHandlers, ev: Event) => any) | null; | ||
oninvalid: ((this: GlobalEventHandlers, ev: Event) => any) | null; | ||
onkeydown: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null; | ||
onkeypress: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null; | ||
onkeyup: ((this: GlobalEventHandlers, ev: KeyboardEvent) => any) | null; | ||
onload: ((this: GlobalEventHandlers, ev: Event) => any) | null; | ||
onloadeddata: ((this: GlobalEventHandlers, ev: Event) => any) | null; | ||
onloadedmetadata: ((this: GlobalEventHandlers, ev: Event) => any) | null; | ||
onloadend: ((this: GlobalEventHandlers, ev: ProgressEvent) => any) | null; | ||
onloadstart: ((this: GlobalEventHandlers, ev: Event) => any) | null; | ||
onlostpointercapture: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null; | ||
onmousedown: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null; | ||
onmouseenter: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null; | ||
onmouseleave: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null; | ||
onmousemove: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null; | ||
onmouseout: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null; | ||
onmouseover: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null; | ||
onmouseup: ((this: GlobalEventHandlers, ev: MouseEvent) => any) | null; | ||
onpause: ((this: GlobalEventHandlers, ev: Event) => any) | null; | ||
onplay: ((this: GlobalEventHandlers, ev: Event) => any) | null; | ||
onplaying: ((this: GlobalEventHandlers, ev: Event) => any) | null; | ||
onpointercancel: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null; | ||
@@ -262,16 +297,2 @@ onpointerdown: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null; | ||
onpointerup: ((this: GlobalEventHandlers, ev: PointerEvent) => any) | null; | ||
onprogress: ((this: GlobalEventHandlers, ev: ProgressEvent) => any) | null; | ||
onratechange: ((this: GlobalEventHandlers, ev: Event) => any) | null; | ||
onreset: ((this: GlobalEventHandlers, ev: Event) => any) | null; | ||
onresize: ((this: GlobalEventHandlers, ev: UIEvent) => any) | null; | ||
onscroll: ((this: GlobalEventHandlers, ev: UIEvent) => any) | null; | ||
onsecuritypolicyviolation: ((this: GlobalEventHandlers, ev: SecurityPolicyViolationEvent) => any) | null; | ||
onseeked: ((this: GlobalEventHandlers, ev: Event) => any) | null; | ||
onseeking: ((this: GlobalEventHandlers, ev: Event) => any) | null; | ||
onselect: ((this: GlobalEventHandlers, ev: UIEvent) => any) | null; | ||
onstalled: ((this: GlobalEventHandlers, ev: Event) => any) | null; | ||
onsubmit: ((this: GlobalEventHandlers, ev: Event) => any) | null; | ||
onsuspend: ((this: GlobalEventHandlers, ev: Event) => any) | null; | ||
ontimeupdate: ((this: GlobalEventHandlers, ev: Event) => any) | null; | ||
ontoggle: ((this: GlobalEventHandlers, ev: Event) => any) | null; | ||
ontouchcancel: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null; | ||
@@ -285,16 +306,18 @@ ontouchend: ((this: GlobalEventHandlers, ev: TouchEvent) => any) | null; | ||
ontransitionstart: ((this: GlobalEventHandlers, ev: TransitionEvent) => any) | null; | ||
onvolumechange: ((this: GlobalEventHandlers, ev: Event) => any) | null; | ||
onwaiting: ((this: GlobalEventHandlers, ev: Event) => any) | null; | ||
onwheel: ((this: GlobalEventHandlers, ev: WheelEvent) => any) | null; | ||
oncopy: ((this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any) | null; | ||
oncut: ((this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any) | null; | ||
onpaste: ((this: DocumentAndElementEventHandlers, ev: ClipboardEvent) => any) | null; | ||
contentEditable: string; | ||
inputMode: string; | ||
readonly isContentEditable: boolean; | ||
readonly dataset: DOMStringMap; | ||
nonce: string; | ||
tabIndex: number; | ||
blur(): void; | ||
focus(options?: FocusOptions | undefined): void; | ||
readonly childElementCount: number; | ||
readonly firstElementChild: Element | null; | ||
readonly lastElementChild: Element | null; | ||
readonly nextElementSibling: Element | null; | ||
readonly previousElementSibling: Element | null; | ||
readonly children: HTMLCollection; | ||
querySelector<K extends "object" | "font" | "track" | "center" | "progress" | "a" | "abbr" | "acronym" | "address" | "applet" | "area" | "article" | "aside" | "audio" | "b" | "base" | "basefont" | "bdo" | "big" | "blockquote" | "body" | "br" | "button" | "canvas" | "caption" | "cite" | "code" | "col" | "colgroup" | "data" | "datalist" | "dd" | "del" | "dfn" | "dir" | "div" | "dl" | "dt" | "em" | "embed" | "fieldset" | "figcaption" | "figure" | "footer" | "form" | "frame" | "frameset" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "head" | "header" | "hgroup" | "hr" | "html" | "i" | "iframe" | "img" | "input" | "ins" | "isindex" | "kbd" | "keygen" | "label" | "legend" | "li" | "link" | "listing" | "map" | "mark" | "marquee" | "menu" | "meta" | "meter" | "nav" | "nextid" | "nobr" | "noframes" | "noscript" | "ol" | "optgroup" | "option" | "output" | "p" | "param" | "picture" | "plaintext" | "pre" | "q" | "rt" | "ruby" | "s" | "samp" | "script" | "section" | "select" | "slot" | "small" | "source" | "span" | "strike" | "strong" | "style" | "sub" | "sup" | "table" | "tbody" | "td" | "template" | "textarea" | "tfoot" | "th" | "thead" | "time" | "title" | "tr" | "tt" | "u" | "ul" | "var" | "video" | "wbr" | "xmp">(selectors: K): HTMLElementTagNameMap[K] | null; | ||
querySelector<K extends "symbol" | "clipPath" | "filter" | "marker" | "mask" | "circle" | "defs" | "desc" | "ellipse" | "feBlend" | "feColorMatrix" | "feComponentTransfer" | "feComposite" | "feConvolveMatrix" | "feDiffuseLighting" | "feDisplacementMap" | "feDistantLight" | "feFlood" | "feFuncA" | "feFuncB" | "feFuncG" | "feFuncR" | "feGaussianBlur" | "feImage" | "feMerge" | "feMergeNode" | "feMorphology" | "feOffset" | "fePointLight" | "feSpecularLighting" | "feSpotLight" | "feTile" | "feTurbulence" | "foreignObject" | "g" | "image" | "line" | "linearGradient" | "path" | "metadata" | "pattern" | "polygon" | "polyline" | "radialGradient" | "rect" | "svg" | "stop" | "switch" | "tspan" | "text" | "textPath" | "use" | "view">(selectors: K): SVGElementTagNameMap[K] | null; | ||
querySelector<E extends Element = Element>(selectors: string): E | null; | ||
querySelectorAll<K extends "object" | "font" | "track" | "center" | "progress" | "a" | "abbr" | "acronym" | "address" | "applet" | "area" | "article" | "aside" | "audio" | "b" | "base" | "basefont" | "bdo" | "big" | "blockquote" | "body" | "br" | "button" | "canvas" | "caption" | "cite" | "code" | "col" | "colgroup" | "data" | "datalist" | "dd" | "del" | "dfn" | "dir" | "div" | "dl" | "dt" | "em" | "embed" | "fieldset" | "figcaption" | "figure" | "footer" | "form" | "frame" | "frameset" | "h1" | "h2" | "h3" | "h4" | "h5" | "h6" | "head" | "header" | "hgroup" | "hr" | "html" | "i" | "iframe" | "img" | "input" | "ins" | "isindex" | "kbd" | "keygen" | "label" | "legend" | "li" | "link" | "listing" | "map" | "mark" | "marquee" | "menu" | "meta" | "meter" | "nav" | "nextid" | "nobr" | "noframes" | "noscript" | "ol" | "optgroup" | "option" | "output" | "p" | "param" | "picture" | "plaintext" | "pre" | "q" | "rt" | "ruby" | "s" | "samp" | "script" | "section" | "select" | "slot" | "small" | "source" | "span" | "strike" | "strong" | "style" | "sub" | "sup" | "table" | "tbody" | "td" | "template" | "textarea" | "tfoot" | "th" | "thead" | "time" | "title" | "tr" | "tt" | "u" | "ul" | "var" | "video" | "wbr" | "xmp">(selectors: K): NodeListOf<HTMLElementTagNameMap[K]>; | ||
querySelectorAll<K extends "symbol" | "clipPath" | "filter" | "marker" | "mask" | "circle" | "defs" | "desc" | "ellipse" | "feBlend" | "feColorMatrix" | "feComponentTransfer" | "feComposite" | "feConvolveMatrix" | "feDiffuseLighting" | "feDisplacementMap" | "feDistantLight" | "feFlood" | "feFuncA" | "feFuncB" | "feFuncG" | "feFuncR" | "feGaussianBlur" | "feImage" | "feMerge" | "feMergeNode" | "feMorphology" | "feOffset" | "fePointLight" | "feSpecularLighting" | "feSpotLight" | "feTile" | "feTurbulence" | "foreignObject" | "g" | "image" | "line" | "linearGradient" | "path" | "metadata" | "pattern" | "polygon" | "polyline" | "radialGradient" | "rect" | "svg" | "stop" | "switch" | "tspan" | "text" | "textPath" | "use" | "view">(selectors: K): NodeListOf<SVGElementTagNameMap[K]>; | ||
querySelectorAll<E extends Element = Element>(selectors: string): NodeListOf<E>; | ||
remove(): void; | ||
animate(keyframes: PropertyIndexedKeyframes | Keyframe[] | null, options?: number | KeyframeAnimationOptions | undefined): Animation; | ||
getAnimations(): Animation[]; | ||
readonly style: CSSStyleDeclaration; | ||
@@ -301,0 +324,0 @@ }; |
{ | ||
"name": "pwa-helpers", | ||
"version": "0.9.0-pre.1", | ||
"version": "0.9.0-pre.2", | ||
"description": "Small helper methods or mixins to help you build web apps.", | ||
@@ -5,0 +5,0 @@ "contributors": [ |
# pwa-helpers | ||
[![Build Status](https://travis-ci.org/Polymer/pwa-helpers.svg?branch=master)](https://travis-ci.org/Polymer/pwa-helpers) | ||
[![Published on npm](https://img.shields.io/npm/v/pwa-helpers.svg)](https://www.npmjs.com/package/pwa-helpers) | ||
Small helper methods or mixins to help build a PWA, | ||
@@ -3,0 +7,0 @@ and reduce the boilerplate you might have to write. There are many different |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
173054
76
1877
178