tweakpane-plugin-inputs
Version:
Input plugins for Tweakpane
10 lines (9 loc) • 350 B
TypeScript
import { BaseInputParams, InputBindingPlugin, NumberInputParams } from '@tweakpane/core';
interface StepperInputParams extends NumberInputParams, BaseInputParams {
min?: number;
max?: number;
step?: number;
view: 'stepper';
}
export declare const StepperInputPlugin: InputBindingPlugin<number, number, StepperInputParams>;
export {};