@kitschpatrol/tweakpane-plugin-textarea
Version:
A fork of @pangenerator/tweakpane-textarea-plugin with build optimizations.
8 lines (7 loc) • 318 B
TypeScript
import { BaseInputParams, InputBindingPlugin } from '@tweakpane/core';
export interface TextareaPluginInputParams extends BaseInputParams {
view: 'textarea';
rows?: number;
placeholder?: string;
}
export declare const TweakpaneTextareaPlugin: InputBindingPlugin<string, string, TextareaPluginInputParams>;