UNPKG

@kitschpatrol/tweakpane-plugin-rotation

Version:

A fork of tweakpane-plugin-rotation with build optimizations.

20 lines (19 loc) 801 B
import { Controller, Value, ViewProps } from '@tweakpane/core'; import { RotationInputView } from './RotationInputView.js'; import type { Rotation } from './Rotation.js'; import type { RotationInputControllerConfig } from './RotationInputControllerConfig.js'; export declare class RotationInputController implements Controller<RotationInputView> { readonly value: Value<Rotation>; readonly view: RotationInputView; readonly viewProps: ViewProps; private readonly swatchC_; private readonly textC_; private readonly popC_; private readonly gizmoC_; private readonly foldable_; constructor(doc: Document, config: RotationInputControllerConfig); private onButtonBlur_; private onButtonClick_; private onPopupChildBlur_; private onPopupChildKeydown_; }