(element: Element)
| 198 | } |
| 199 | |
| 200 | export function scrollIntoViewIfNeeded(element: Element): void { |
| 201 | // @ts-expect-error No Firefox support https://developer.mozilla.org/docs/Web/API/Element/scrollIntoViewIfNeeded |
| 202 | (element.scrollIntoViewIfNeeded ?? element.scrollIntoView).call(element); |
| 203 | } |
| 204 | |
| 205 | export function getConversationBody(): Element { |
| 206 | return $([ |
no outgoing calls
no test coverage detected