| 13 | * parentNode (like browser's `node.ownerDocument`). |
| 14 | */ |
| 15 | export class FocusManager { |
| 16 | activeElement: DOMElement | null = null |
| 17 | private dispatchFocusEvent: (target: DOMElement, event: FocusEvent) => boolean |
| 18 | private enabled = true |
nothing calls this directly
no outgoing calls
no test coverage detected