UNPKG

@pangenerator/tweakpane-textarea-plugin

Version:
8 lines (7 loc) 318 B
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>;