Files
aihot/frontend/node_modules/element-plus/es/components/input/src/utils.d.ts
2026-05-26 12:56:03 +08:00

9 lines
355 B
TypeScript

//#region ../../packages/components/input/src/utils.d.ts
type TextAreaHeight = {
height: string;
minHeight?: string;
};
declare const looseToNumber: (val: any) => any;
declare function calcTextareaHeight(targetElement: HTMLTextAreaElement, minRows?: number, maxRows?: number): TextAreaHeight;
//#endregion
export { calcTextareaHeight, looseToNumber };