Skip to content

Commit 2958912

Browse files
committed
Mark WritableStream as open
1 parent 9769d65 commit 2958912

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

Sources/DOM/Generated.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18032,8 +18032,8 @@ public class WorkletOptions: BridgedDictionary {
1803218032
public var credentials: RequestCredentials
1803318033
}
1803418034

18035-
public class WritableStream: JSBridgedClass {
18036-
@inlinable public class var constructor: JSFunction? { JSObject.global[Strings.WritableStream].function }
18035+
open class WritableStream: JSBridgedClass {
18036+
@inlinable open class var constructor: JSFunction? { JSObject.global[Strings.WritableStream].function }
1803718037

1803818038
public let jsObject: JSObject
1803918039

Sources/WebIDLToSwift/WebIDL+SwiftRepresentation.swift

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -233,6 +233,7 @@ extension MergedInterface: SwiftRepresentable {
233233
"ShadowRoot",
234234
"Worklet",
235235
"WebGLObject",
236+
"WritableStream",
236237
]
237238
let access: SwiftSource = openClasses.contains(name) ? "open" : "public"
238239

0 commit comments

Comments
 (0)