Type Alias ElementSizerOptions<T>

ElementSizerOptions<T>: {
    containerEl?: HTMLElement | string;
    naturalSize?: Rect;
    onSetSize: ((size: Rect, el: T) => void);
    stretch?: ElementResizeLogic;
}

Type Parameters

  • T extends HTMLElement | SVGElement