| 41 | |
| 42 | |
| 43 | class DOMNode(TypedDict): |
| 44 | nodeId: str |
| 45 | nodeType: str |
| 46 | nodeName: str |
| 47 | nodeValue: str |
| 48 | attributes: str |
| 49 | backendNodeId: str |
| 50 | parentId: str |
| 51 | childIds: list[str] |
| 52 | cursor: int |
| 53 | union_bound: list[float] | None |
| 54 | |
| 55 | |
| 56 | class BrowserConfig(TypedDict): |
nothing calls this directly
no outgoing calls
no test coverage detected