resize-observer
resize-observer copied to clipboard
Export required classes/interfaces for Typescript implementations
Currently necessary to define the following interfaces locally since they're not exported.
interface ContentRect {
readonly height: number;
readonly left: number;
readonly top: number;
readonly width: number;
}
interface ResizeObserverEntry {
readonly target: Element;
readonly contentRect: ContentRect;
};