Files
game-cards-poker-design/frontend/node_modules/element-plus/lib/components/input/src/utils.d.ts

9 lines
355 B
TypeScript
Raw Normal View History

//#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 };