UNPKG

resize-observer

Version:

An implementation and polyfill of the Resize Observer draft.

13 lines (10 loc) 311 B
import { ContentRect } from './ContentRect'; class ResizeObserverEntry { public readonly target: Element; public readonly contentRect: ContentRect; constructor(target: Element) { this.target = target; this.contentRect = ContentRect(target); } } export { ResizeObserverEntry };