@kitschpatrol/tweakpane-plugin-essentials
Version:
A fork of @tweakpane/plugin-essentials with build optimizations.
15 lines (14 loc) • 463 B
TypeScript
import { Foldable, PickerLayout, View, ViewProps } from '@tweakpane/core';
interface Config {
foldable: Foldable;
pickerLayout: PickerLayout;
viewProps: ViewProps;
}
export declare class CubicBezierView implements View {
readonly element: HTMLElement;
readonly buttonElement: HTMLButtonElement;
readonly textElement: HTMLElement;
readonly pickerElement: HTMLElement | null;
constructor(doc: Document, config: Config);
}
export {};