UNPKG

zp-bee

Version:

zp-bee,是一款基于 Dumi,由 React + TypeScript 开发的组件库 🎉。

11 lines (10 loc) 306 B
export default function observeRect(node: Element, cb: (rect: DOMRect) => void): { observe(): void; unobserve(): void; }; export declare type PartialRect = Partial<DOMRect>; export declare type RectProps = { rect: DOMRect | undefined; hasRectChanged: boolean; callbacks: Function[]; };