File size: 401 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 |
# NodeEntry API
`NodeEntry` objects are returned when iterating over the nodes in a Slate document tree. They consist of an array with two elements: the `Node` and its `Path` relative to the root node in the document.
They are generics meaning that sometimes they will return a subset of `Node` types like an `Element` or `Text`.
```typescript
type NodeEntry<T extends Node = Node> = [T, Path]
```
|