Files
video-gen/video-gen-admin/node_modules/@rc-component/textarea/es/calculateNodeHeight.d.ts
T
2026-05-25 17:08:18 +08:00

10 lines
426 B
TypeScript

import type React from 'react';
export interface NodeType {
sizingStyle: string;
paddingSize: number;
borderSize: number;
boxSizing: string;
}
export declare function calculateNodeStyling(node: HTMLElement, useCache?: boolean): NodeType;
export default function calculateAutoSizeStyle(uiTextNode: HTMLTextAreaElement, useCache?: boolean, minRows?: number | null, maxRows?: number | null): React.CSSProperties;