@@ -20,6 +20,11 @@ AbortSignal[JT] def dispatchEvent(evt: Event): Boolean
2020AbortSignal[JT] var onabort: js.Function0[Any]
2121AbortSignal[JT] def removeEventListener[T <: Event](`type`: String, listener: js.Function1[T, _], options: EventListenerOptions): Unit
2222AbortSignal[JT] def removeEventListener[T <: Event](`type`: String, listener: js.Function1[T, _], useCapture: Boolean?): Unit
23+ AbstractRange[JT] def collapsed: Boolean
24+ AbstractRange[JT] def endContainer: Node
25+ AbstractRange[JT] def endOffset: Int
26+ AbstractRange[JT] def startContainer: Node
27+ AbstractRange[JT] def startOffset: Int
2328AbstractWorker[JT] def addEventListener[T <: Event](`type`: String, listener: js.Function1[T, _], options: EventListenerOptions): Unit
2429AbstractWorker[JT] def addEventListener[T <: Event](`type`: String, listener: js.Function1[T, _], useCapture: Boolean?): Unit
2530AbstractWorker[JT] def dispatchEvent(evt: Event): Boolean
@@ -14184,6 +14189,84 @@ ImageCapture[JC] val track: MediaStreamTrack
1418414189ImageData[JC] def data: js.Array[Int]
1418514190ImageData[JC] def height: Int
1418614191ImageData[JC] def width: Int
14192+ InputEvent[JC] def bubbles: Boolean
14193+ InputEvent[JC] def cancelBubble: Boolean
14194+ InputEvent[JC] def cancelable: Boolean
14195+ InputEvent[JC] def currentTarget: EventTarget
14196+ InputEvent[JC] def data: String
14197+ InputEvent[JC] def dataTransfer: DataTransfer
14198+ InputEvent[JC] def defaultPrevented: Boolean
14199+ InputEvent[JC] def detail: Int
14200+ InputEvent[JC] def eventPhase: Int
14201+ InputEvent[JC] def getTargetRanges(): js.Array[StaticRange]
14202+ InputEvent[JC] def inputType: InputType
14203+ InputEvent[JC] def isComposing: Boolean
14204+ InputEvent[JC] def isTrusted: Boolean
14205+ InputEvent[JC] def preventDefault(): Unit
14206+ InputEvent[JC] def stopImmediatePropagation(): Unit
14207+ InputEvent[JC] def stopPropagation(): Unit
14208+ InputEvent[JC] def target: EventTarget
14209+ InputEvent[JC] def timeStamp: Double
14210+ InputEvent[JC] def `type`: String
14211+ InputEvent[JC] def view: Window
14212+ InputEventInit[JT] var bubbles: js.UndefOr[Boolean]
14213+ InputEventInit[JT] var cancelable: js.UndefOr[Boolean]
14214+ InputEventInit[JT] var composed: js.UndefOr[Boolean]
14215+ InputEventInit[JT] var data: js.UndefOr[String]
14216+ InputEventInit[JT] var dataTransfer: js.UndefOr[DataTransfer]
14217+ InputEventInit[JT] var detail: js.UndefOr[Int]
14218+ InputEventInit[JT] var inputType: js.UndefOr[InputType]
14219+ InputEventInit[JT] var isComposing: js.UndefOr[Boolean]
14220+ InputEventInit[JT] var ranges: js.UndefOr[js.Array[StaticRange]]
14221+ InputEventInit[JT] var scoped: js.UndefOr[Boolean]
14222+ InputEventInit[JT] var view: js.UndefOr[Window]
14223+ InputType[JT]
14224+ InputType[SO] val deleteByCut: InputType
14225+ InputType[SO] val deleteByDrag: InputType
14226+ InputType[SO] val deleteContent: InputType
14227+ InputType[SO] val deleteContentBackward: InputType
14228+ InputType[SO] val deleteContentForward: InputType
14229+ InputType[SO] val deleteEntireSoftLine: InputType
14230+ InputType[SO] val deleteHardLineBackward: InputType
14231+ InputType[SO] val deleteHardLineForward: InputType
14232+ InputType[SO] val deleteSoftLineBackward: InputType
14233+ InputType[SO] val deleteSoftLineForward: InputType
14234+ InputType[SO] val deleteWordBackward: InputType
14235+ InputType[SO] val deleteWordForward: InputType
14236+ InputType[SO] val formatBackColor: InputType
14237+ InputType[SO] val formatBold: InputType
14238+ InputType[SO] val formatFontColor: InputType
14239+ InputType[SO] val formatFontName: InputType
14240+ InputType[SO] val formatIndent: InputType
14241+ InputType[SO] val formatItalic: InputType
14242+ InputType[SO] val formatJustifyCenter: InputType
14243+ InputType[SO] val formatJustifyFull: InputType
14244+ InputType[SO] val formatJustifyLeft: InputType
14245+ InputType[SO] val formatJustifyRight: InputType
14246+ InputType[SO] val formatOutdent: InputType
14247+ InputType[SO] val formatRemove: InputType
14248+ InputType[SO] val formatSetBlockTextDirection: InputType
14249+ InputType[SO] val formatSetInlineTextDirection: InputType
14250+ InputType[SO] val formatStrikeThrough: InputType
14251+ InputType[SO] val formatSubscript: InputType
14252+ InputType[SO] val formatSuperscript: InputType
14253+ InputType[SO] val formatUnderline: InputType
14254+ InputType[SO] val historyRedo: InputType
14255+ InputType[SO] val historyUndo: InputType
14256+ InputType[SO] val insertCompositionText: InputType
14257+ InputType[SO] val insertFromDrop: InputType
14258+ InputType[SO] val insertFromPaste: InputType
14259+ InputType[SO] val insertFromPasteAsQuotation: InputType
14260+ InputType[SO] val insertFromYank: InputType
14261+ InputType[SO] val insertHorizontalRule: InputType
14262+ InputType[SO] val insertLineBreak: InputType
14263+ InputType[SO] val insertLink: InputType
14264+ InputType[SO] val insertOrderedList: InputType
14265+ InputType[SO] val insertParagraph: InputType
14266+ InputType[SO] val insertReplacementText: InputType
14267+ InputType[SO] val insertText: InputType
14268+ InputType[SO] val insertTranspose: InputType
14269+ InputType[SO] val insertUnorderedList: InputType
1418714270JsonWebKey[JT] var alg: js.Array[String]
1418814271JsonWebKey[JT] var crv: String
1418914272JsonWebKey[JT] var d: String
@@ -24124,6 +24207,15 @@ SourceBufferList[JT] var onaddsourcebuffer: js.Function1[Event, Any]
2412424207SourceBufferList[JT] var onremovesourcebuffer: js.Function1[Event, Any]
2412524208SourceBufferList[JT] def removeEventListener[T <: Event](`type`: String, listener: js.Function1[T, _], options: EventListenerOptions): Unit
2412624209SourceBufferList[JT] def removeEventListener[T <: Event](`type`: String, listener: js.Function1[T, _], useCapture: Boolean?): Unit
24210+ StaticRange[JC] def collapsed: Boolean
24211+ StaticRange[JC] def endContainer: Node
24212+ StaticRange[JC] def endOffset: Int
24213+ StaticRange[JC] def startContainer: Node
24214+ StaticRange[JC] def startOffset: Int
24215+ StaticRangeInit[JT] val endContainer: Node
24216+ StaticRangeInit[JT] val endOffset: Int
24217+ StaticRangeInit[JT] val startContainer: Node
24218+ StaticRangeInit[JT] val startOffset: Int
2412724219StereoPannerNode[JT] def addEventListener[T <: Event](`type`: String, listener: js.Function1[T, _], options: EventListenerOptions): Unit
2412824220StereoPannerNode[JT] def addEventListener[T <: Event](`type`: String, listener: js.Function1[T, _], useCapture: Boolean?): Unit
2412924221StereoPannerNode[JT] var channelCount: Int
0 commit comments