tweakpane-plugin-inputs
Version:
Input plugins for Tweakpane
13 lines (12 loc) • 356 B
TypeScript
import { Value, View, ViewProps } from '@tweakpane/core';
interface Config {
value: Value<number>;
viewProps: ViewProps;
}
export declare class StepperButtonsView implements View {
readonly element: HTMLElement;
readonly btnMinus: HTMLElement;
readonly btnPlus: HTMLElement;
constructor(doc: Document, config: Config);
}
export {};