@@ -993,11 +993,11 @@ Clients[JT] def openWindow(url: String): js.Promise[WindowClient]
993993Clipboard[JT] def addEventListener[T <: Event](`type`: String, listener: js.Function1[T, _], options: EventListenerOptions): Unit
994994Clipboard[JT] def addEventListener[T <: Event](`type`: String, listener: js.Function1[T, _], useCapture: Boolean?): Unit
995995Clipboard[JT] def dispatchEvent(evt: Event): Boolean
996- Clipboard[JT] def read(): js.Promise[DataTransfer ]
996+ Clipboard[JT] def read(): js.Promise[js.Array[ClipboardItem] ]
997997Clipboard[JT] def readText(): js.Promise[String]
998998Clipboard[JT] def removeEventListener[T <: Event](`type`: String, listener: js.Function1[T, _], options: EventListenerOptions): Unit
999999Clipboard[JT] def removeEventListener[T <: Event](`type`: String, listener: js.Function1[T, _], useCapture: Boolean?): Unit
1000- Clipboard[JT] def write(data: DataTransfer ): js.Promise[Unit]
1000+ Clipboard[JT] def write(data: js.Array[ClipboardItem] ): js.Promise[Unit]
10011001Clipboard[JT] def writeText(newClipText: String): js.Promise[Unit]
10021002ClipboardEvent[JC] def bubbles: Boolean
10031003ClipboardEvent[JC] def cancelBubble: Boolean
@@ -1019,6 +1019,10 @@ ClipboardEventInit[JT] var composed: js.UndefOr[Boolean]
10191019ClipboardEventInit[JT] var data: js.UndefOr[String]
10201020ClipboardEventInit[JT] var dataType: js.UndefOr[String]
10211021ClipboardEventInit[JT] var scoped: js.UndefOr[Boolean]
1022+ ClipboardItem[JC] def getType(`type`: String): js.Promise[Blob]
1023+ ClipboardItem[JC] def presentationStyle: PresentationStyle
1024+ ClipboardItem[JC] def types: FrozenArray[String]
1025+ ClipboardItemOptions[JT] def presentationStyle: js.UndefOr[PresentationStyle]
10221026CloseEvent[JT] def bubbles: Boolean
10231027CloseEvent[JT] def cancelBubble: Boolean
10241028CloseEvent[JT] def cancelable: Boolean
@@ -2017,6 +2021,8 @@ FrameType[SO] val auxiliary: FrameType
20172021FrameType[SO] val nested: FrameType
20182022FrameType[SO] val none: FrameType
20192023FrameType[SO] val `top-level` = "top-level".asInstanceOf[FrameType]
2024+ FrozenArray[JT] @js.annotation.JSBracketAccess def apply(index: Int): T
2025+ FrozenArray[JT] val length: Int
20202026FullscreenOptions[JT] var navigationUI: js.UndefOr[String]
20212027GainNode[JT] def addEventListener[T <: Event](`type`: String, listener: js.Function1[T, _], options: EventListenerOptions): Unit
20222028GainNode[JT] def addEventListener[T <: Event](`type`: String, listener: js.Function1[T, _], useCapture: Boolean?): Unit
@@ -16226,6 +16232,10 @@ PositionError[JT] def message: String
1622616232PositionOptions[JC] var enableHighAccuracy: Boolean
1622716233PositionOptions[JC] var maximumAge: Int
1622816234PositionOptions[JC] var timeout: Int
16235+ PresentationStyle[JT]
16236+ PresentationStyle[SO] val attachment: PresentationStyle
16237+ PresentationStyle[SO] val inline: PresentationStyle
16238+ PresentationStyle[SO] val unspecified: PresentationStyle
1622916239ProcessingInstruction[JC] def addEventListener[T <: Event](`type`: String, listener: js.Function1[T, _], options: EventListenerOptions): Unit
1623016240ProcessingInstruction[JC] def addEventListener[T <: Event](`type`: String, listener: js.Function1[T, _], useCapture: Boolean?): Unit
1623116241ProcessingInstruction[JC] def appendChild(newChild: Node): Node
@@ -26946,6 +26956,7 @@ package[SO] type BufferSource = ArrayBufferView | ArrayBuffer
2694626956package[SO] type ByteString = String
2694726957package[SO] type ClientRect = DOMRect (@deprecated in 2.0.0)
2694826958package[SO] type ClientRectList = DOMRectList (@deprecated in 2.0.0)
26959+ package[SO] type ClipboardItemData = js.Promise[String | Blob]
2694926960package[SO] type HashAlgorithmIdentifier = HashAlgorithm | String
2695026961package[SO] type HeadersInit = Headers | Sequence[Sequence[ByteString]] | OpenEndedDictionary[ByteString]
2695126962package[SO] type IDBKey = Any
0 commit comments