You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
461 B
14 lines
461 B
export interface NodeType {
|
|
sizingStyle: string;
|
|
paddingSize: number;
|
|
borderSize: number;
|
|
boxSizing: string;
|
|
}
|
|
export declare function calculateNodeStyling(node: HTMLElement, useCache?: boolean): NodeType;
|
|
export default function calculateNodeHeight(uiTextNode: HTMLTextAreaElement, useCache?: boolean, minRows?: number | null, maxRows?: number | null): {
|
|
height: number;
|
|
minHeight: number;
|
|
maxHeight: number;
|
|
overflowY: any;
|
|
};
|