| 3 | import type { TreeAdapter, TreeAdapterTypeMap } from './interface.js'; |
| 4 | |
| 5 | export interface Document { |
| 6 | /** The name of the node. */ |
| 7 | nodeName: '#document'; |
| 8 | /** |
| 9 | * Document mode. |
| 10 | * |
| 11 | * @see {@link DOCUMENT_MODE} */ |
| 12 | mode: DOCUMENT_MODE; |
| 13 | /** The node's children. */ |
| 14 | childNodes: ChildNode[]; |
| 15 | /** Comment source code location info. Available if location info is enabled. */ |
| 16 | sourceCodeLocation?: Location | null; |
| 17 | } |
| 18 | |
| 19 | export interface DocumentFragment { |
| 20 | /** The name of the node. */ |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…