Global Functionswiftwasm.webapikit 0.1.0WebAPIBase
_toJSValue(_:)
Generated.swift:839func _toJSValue<A0>(_ value: ((A0) -> Void)?) -> JSValue where A0 : ConstructibleFromJSValue, A0 : ConvertibleToJSValue
func _toJSValue<A0>(_ value: ((A0) -> Void)?) -> JSValue where A0 : ConstructibleFromJSValue, A0 : ConvertibleToJSValue
s10WebAPIBase10_toJSValuey13JavaScriptKit0D0OyxcSgAC017ConstructibleFromD0RzAC013ConvertibleToD0RzlF
What are these?5UKV2
import WebAPIBase
typealias Void = ()
The return type of functions that don’t explicitly specify a return type, that is, an empty tuple ()
.
@dynamicMemberLookup enum JSValue
JSValue
represents a value in JavaScript.
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.