UNPKG

tweakpane-plugin-inputs

Version:
9 lines (8 loc) 296 B
import { BaseInputParams, InputBindingPlugin } from '@tweakpane/core'; export interface DotsInputParams extends BaseInputParams { max?: number; min?: number; step?: number; view: 'dots'; } export declare const DotsInputPlugin: InputBindingPlugin<number, number, DotsInputParams>;