2020-12-26 14:31:41 -08:00
# class: Foo
## method: Foo.bar
### option: Foo.bar.x
- `x` < [number]>
### option: Foo.bar.y
- `y` < [number]>
### option: Foo.bar.nullable
- `nullable` < ?[string]>
### option: Foo.bar.maybe
- `maybe` < [number]>
### option: Foo.bar.object
- `object` < [Object]>
- `one` < [number]>
- `two` < [number]> defaults to `2` .
## method: Foo.baz
2020-03-18 16:23:25 -07:00
- returns: < ?[Object]>
- `abc` < [number]>
- `def` < [number]> if applicable.
- `ghi` < [string]>
2020-12-26 14:31:41 -08:00
## method: Foo.goBack
2020-03-18 16:23:25 -07:00
- returns: < [Promise]< ?[Response]>> Promise which resolves to the main resource response. In case of multiple redirects, the navigation will resolve with the response of the last redirect. If
can not go back, resolves to `null` .
2020-12-26 14:31:41 -08:00
## method: Foo.response
2020-03-18 16:23:25 -07:00
- returns: < ?[Response]> A matching [Response] object, or `null` if the response has not been received yet.