UNPKG

@kitschpatrol/tweakpane-plugin-essentials

Version:

A fork of @tweakpane/plugin-essentials with build optimizations.

15 lines (14 loc) 477 B
import { PointNdTextController, View } from '@tweakpane/core'; import { Interval } from '../model/interval.js'; import { RangeSliderView } from './range-slider.js'; interface Config { sliderView: RangeSliderView; textView: PointNdTextController<Interval>['view']; } export declare class RangeSliderTextView implements View { readonly element: HTMLElement; private sliderView_; private textView_; constructor(doc: Document, config: Config); } export {};