Enumerationswiftwasm.webapikit 0.1.0DOM
Element_or_HTMLCollection
Generated.swift:21998enum Element_or_HTMLCollection
enum Element_or_HTMLCollection
import DOM
case element(Element)
case htmlCollection(HTMLCollection)
protocol Any_Element_or_HTMLCollection : ConvertibleToJSValue
protocol ConstructibleFromJSValue
Types conforming to this protocol can be constructed from JSValue
.
protocol ConvertibleToJSValue
Objects that can be converted to a JavaScript value, preferably in a lossless manner.
static func construct(from value: JSValue) -> Self?
var element: Element? { get }
var htmlCollection: HTMLCollection? { get }
var jsValue: JSValue { get }
func jsValue() -> JSValue