Instance Propertyswiftwasm.webapikit 0.1.0SVG
jsObject
Generated.swift:1156let jsObject: JSObject
let jsObject: JSObject
s3SVG12SVGPointListC8jsObject13JavaScriptKit8JSObjectCvp
What are these?9QJLT
import SVG
class SVGPointList
@dynamicMemberLookup class JSObject
JSObject
represents an object in JavaScript and supports dynamic member lookup. Any member access like object.foo
will dynamically request the JavaScript and Swift runtime bridge library for a member with the specified name in this object.
required init(unsafelyWrapping jsObject: JSObject)
class var constructor: JSFunction? { get }
@ReadonlyAttribute var length: UInt32 { get }
@ReadonlyAttribute var numberOfItems: UInt32 { get }
subscript(key: Int) -> DOMPoint { get set }
func appendItem(newItem: DOMPoint) -> DOMPoint
func clear()
func getItem(index: UInt32) -> DOMPoint
func initialize(newItem: DOMPoint) -> DOMPoint
func insertItemBefore(newItem: DOMPoint, index: UInt32) -> DOMPoint
func removeItem(index: UInt32) -> DOMPoint
func replaceItem(newItem: DOMPoint, index: UInt32) -> DOMPoint