calculateNodeHeight.d.ts 427 B

123456789
  1. import type { CSSProperties } from 'vue';
  2. export interface NodeType {
  3. sizingStyle: string;
  4. paddingSize: number;
  5. borderSize: number;
  6. boxSizing: string;
  7. }
  8. export declare function calculateNodeStyling(node: HTMLElement, useCache?: boolean): NodeType;
  9. export default function calculateNodeHeight(uiTextNode: HTMLTextAreaElement, useCache?: boolean, minRows?: number | null, maxRows?: number | null): CSSProperties;