()
| 124 | readonly arrowCreation: PageArrowCreation; |
| 125 | |
| 126 | getContainerClientRect() { |
| 127 | const pageElem = document.querySelector( |
| 128 | `.display-page[data-page-id="${this.id}"]`, |
| 129 | ); |
| 130 | |
| 131 | if (pageElem == null) { |
| 132 | return; |
| 133 | } |
| 134 | |
| 135 | return this.rects.fromDOM(pageElem.getBoundingClientRect()); |
| 136 | } |
| 137 | getContainerWorldRect() { |
| 138 | const containerClientRect = this.getContainerClientRect(); |
| 139 |
no test coverage detected