-
-
Notifications
You must be signed in to change notification settings - Fork 6
Open
Labels
questionFurther information is requestedFurther information is requested
Description
this function def in the example:
func fetch(_ url: String) -> JSPromise {
JSPromise(jsFetch(url).object!)!
}
should be
func fetch(_ url: String) -> JSPromise<JSObject, JSError> {
JSPromise(jsFetch(url).object!)!
}
Xcode will fix is as <Any,Any> which does not help.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
questionFurther information is requestedFurther information is requested