UNPKG

@gzued/antd-compiled

Version:

Pre-bundled Ant Design 4.x and related dependencies for @gzued packages

12 lines (11 loc) 386 B
import * as React from 'react'; import type { TextAreaProps } from '.'; export interface AutoSizeType { minRows?: number; maxRows?: number; } export interface ResizableTextAreaRef { textArea: HTMLTextAreaElement; } declare const ResizableTextArea: React.ForwardRefExoticComponent<TextAreaProps & React.RefAttributes<ResizableTextAreaRef>>; export default ResizableTextArea;