first commit
This commit is contained in:
30
frontend/node_modules/rc-textarea/lib/ResizableTextArea.d.ts
generated
vendored
Normal file
30
frontend/node_modules/rc-textarea/lib/ResizableTextArea.d.ts
generated
vendored
Normal file
@@ -0,0 +1,30 @@
|
||||
import * as React from 'react';
|
||||
import type { ResizableTextAreaRef } from './interface';
|
||||
declare const ResizableTextArea: React.ForwardRefExoticComponent<Omit<import("./interface").HTMLTextareaProps, "value" | "onResize"> & {
|
||||
value?: string | number | bigint | readonly string[];
|
||||
prefixCls?: string;
|
||||
className?: string;
|
||||
style?: React.CSSProperties;
|
||||
autoSize?: boolean | import("./interface").AutoSizeType;
|
||||
onPressEnter?: React.KeyboardEventHandler<HTMLTextAreaElement>;
|
||||
onResize?: (size: {
|
||||
width: number;
|
||||
height: number;
|
||||
}) => void;
|
||||
classNames?: {
|
||||
affixWrapper?: string;
|
||||
prefix?: string;
|
||||
suffix?: string;
|
||||
groupWrapper?: string;
|
||||
wrapper?: string;
|
||||
variant?: string;
|
||||
} & {
|
||||
textarea?: string;
|
||||
count?: string;
|
||||
};
|
||||
styles?: {
|
||||
textarea?: React.CSSProperties;
|
||||
count?: React.CSSProperties;
|
||||
};
|
||||
} & Pick<import("rc-input/lib/interface").BaseInputProps, "allowClear" | "suffix"> & Pick<import("rc-input").InputProps, "showCount" | "count" | "onClear"> & React.RefAttributes<ResizableTextAreaRef>>;
|
||||
export default ResizableTextArea;
|
||||
Reference in New Issue
Block a user