@pangenerator/tweakpane-textarea-plugin
Version:
Textarea plugin for Tweakpane
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>;