7 lines
222 B
TypeScript
7 lines
222 B
TypeScript
|
declare type TextAreaHeight = {
|
||
|
height: string;
|
||
|
minHeight?: string;
|
||
|
};
|
||
|
export declare function calcTextareaHeight(targetElement: HTMLTextAreaElement, minRows?: number, maxRows?: number): TextAreaHeight;
|
||
|
export {};
|