|
- /**
- * Bounding rect object.
- *
- * @see https://developer.mozilla.org/en-US/docs/Web/API/DOMRect
- */
- export default class DOMRect {
- x: number;
- y: number;
- width: number;
- height: number;
- top: number;
- right: number;
- bottom: number;
- left: number;
- /**
- * Constructor.
- *
- * @param [x] X position.
- * @param [y] Y position.
- * @param [width] Width.
- * @param [height] Height.
- */
- constructor(x?: any, y?: any, width?: any, height?: any);
- }
|