UNPKG

@kitschpatrol/tweakpane-plugin-textarea

Version:

A fork of @pangenerator/tweakpane-textarea-plugin with build optimizations.

17 lines (16 loc) 443 B
import { Value, View, ViewProps } from '@tweakpane/core'; interface Config { value: Value<string>; viewProps: ViewProps; rows: number; placeholder: string; } export declare class TextAreaView implements View { readonly inputElement: HTMLTextAreaElement; readonly element: HTMLElement; private readonly value_; constructor(doc: Document, config: Config); refresh(): void; private onChange_; } export {};