Instance Property (Default implementation)javascriptkit 0.24.0JavaScriptKit
description
JSBridgedType.swift:13var description: String { get }
var description: String { get }
import JavaScriptKit
Swift framework to interact with JavaScript through WebAssembly.
protocol JSBridgedType : ConstructibleFromJSValue, ConvertibleToJSValue, CustomStringConvertible
Use this protocol when your type has no single JavaScript class. For example, a union type of multiple classes or primitive values.
@frozen struct String
A Unicode string value that is a collection of characters.
var description: String { get }
A textual representation of this instance.
static func construct(from value: JSValue) -> Self?