Defines optional pre-fetched HTMLElement metric data used in calculations.

interface PrefetchMetrics {
    computedStyle?: CSSStyleDeclaration;
    offsetHeight?: number;
    offsetWidth?: number;
}
Index
computedStyle?: CSSStyleDeclaration

Computed styles for target element.

offsetHeight?: number

Offset height of target element.

offsetWidth?: number

Offset width of target element.