UNPKG

tweakpane-plugin-inputs

Version:
8 lines (7 loc) 293 B
import { Constraint } from '@tweakpane/core'; export declare class StepperConstraint implements Constraint<number> { readonly step: number; readonly edge: Constraint<number> | undefined; constructor(step: number, edge?: Constraint<number>); constrain(value: number): number; }