Interactive is super cool! Is there a way to jslink widgets instead?

import xarray as xr
import hvplot.xarray # noqa
import panel as pn

ds = xr.tutorial.load_dataset('air_temperature')
ds.air.mean("time").interactive.hvplot("lon", "lat", alpha=pn.widgets.FloatSlider(value=1))

This works, but I think runs on a Python server. Is there a way to jslink it instead achieving the same as:
https://discourse.holoviz.org/t/how-to-jslink-slider-or-any-other-js-property-to-images-alpha-tutorial/2581/2

Should I submit a feature request (e.g. add jslink=True or jslink={“alpha”: “glyph.global_alpha”})