11 lines
227 B
TypeScript
Executable File
11 lines
227 B
TypeScript
Executable File
import {InteractableRect} from '../interactable-event';
|
|
|
|
export function domRectToObj(rect: DOMRect): InteractableRect {
|
|
return {
|
|
left: rect.left,
|
|
top: rect.top,
|
|
width: rect.width,
|
|
height: rect.height,
|
|
};
|
|
}
|