@@ -1089,6 +1089,9 @@ CanvasRenderingContext2D[JC] def createRadialGradient(x0: Double, y0: Double, r0
10891089CanvasRenderingContext2D[JC] def drawImage(image: HTMLElement, offsetX: Double, offsetY: Double, width: Double?, height: Double?, canvasOffsetX: Double?, canvasOffsetY: Double?, canvasImageWidth: Double?, canvasImageHeight: Double?): Unit
10901090CanvasRenderingContext2D[JC] def ellipse(x: Double, y: Double, radiusX: Double, radiusY: Double, rotation: Double, startAngle: Double, endAngle: Double, anticlockwise: Boolean?): Unit
10911091CanvasRenderingContext2D[JC] def fill(): Unit
1092+ CanvasRenderingContext2D[JC] def fill(fillRule: String): Unit
1093+ CanvasRenderingContext2D[JC] def fill(path: Path2D): Unit
1094+ CanvasRenderingContext2D[JC] def fill(path: Path2D, fillRule: String): Unit
10921095CanvasRenderingContext2D[JC] def fillRect(x: Double, y: Double, w: Double, h: Double): Unit
10931096CanvasRenderingContext2D[JC] var fillStyle: js.Any
10941097CanvasRenderingContext2D[JC] def fillText(text: String, x: Double, y: Double, maxWidth: Double?): Unit
@@ -1122,6 +1125,7 @@ CanvasRenderingContext2D[JC] var shadowColor: String
11221125CanvasRenderingContext2D[JC] var shadowOffsetX: Double
11231126CanvasRenderingContext2D[JC] var shadowOffsetY: Double
11241127CanvasRenderingContext2D[JC] def stroke(): Unit
1128+ CanvasRenderingContext2D[JC] def stroke(path: Path2D): Unit
11251129CanvasRenderingContext2D[JC] def strokeRect(x: Double, y: Double, w: Double, h: Double): Unit
11261130CanvasRenderingContext2D[JC] var strokeStyle: js.Any
11271131CanvasRenderingContext2D[JC] def strokeText(text: String, x: Double, y: Double, maxWidth: Double?): Unit
@@ -16627,6 +16631,17 @@ ParentNode[JT] def children: HTMLCollection[Element]
1662716631ParentNode[JT] def firstElementChild: Element
1662816632ParentNode[JT] def lastElementChild: Element
1662916633ParentNode[JT] def replaceChildren(nodes: Node | String*): Unit
16634+ Path2D[JC] def addPath(path: Path2D): Unit
16635+ Path2D[JC] def arc(x: Double, y: Double, radius: Double, startAngle: Double, endAngle: Double): Unit
16636+ Path2D[JC] def arc(x: Double, y: Double, radius: Double, startAngle: Double, endAngle: Double, anticlockwise: Boolean): Unit
16637+ Path2D[JC] def arcTo(x1: Double, y1: Double, x2: Double, y2: Double, radius: Double): Unit
16638+ Path2D[JC] def bezierCurveTo(cp1x: Double, cp1y: Double, cp2x: Double, cp2y: Double, x: Double, y: Double): Unit
16639+ Path2D[JC] def closePath(): Unit
16640+ Path2D[JC] def ellipse(x: Double, y: Double, radiusX: Double, radiusY: Double, rotation: Double, startAngle: Double, endAngle: Double, anticlockwise: Boolean?): Unit
16641+ Path2D[JC] def lineTo(x: Double, y: Double): Unit
16642+ Path2D[JC] def moveTo(x: Double, y: Double): Unit
16643+ Path2D[JC] def quadraticCurveTo(cpx: Double, cpy: Double, x: Double, y: Double): Unit
16644+ Path2D[JC] def rect(x: Double, y: Double, w: Double, h: Double): Unit
1663016645Pbkdf2Params[JT] val hash: HashAlgorithmIdentifier
1663116646Pbkdf2Params[JT] val iterations: Double
1663216647Pbkdf2Params[JT] val name: String
0 commit comments