import type SliderScale from "./SliderScale.js"; export default function SliderScaleTemplate(this: SliderScale) { return (
{this._tickmarks.length > 0 && (
{this._tickmarks.map(tick => (
{tick.label && tick.showLabel && ( {tick.label} )}
))}
)}
); }