1
0
mirror of https://github.com/ianstormtaylor/slate.git synced 2025-08-06 07:17:27 +02:00
Files
slate/docs/api/nodes
Felix Feng c56a98fd65 skip nonselectable nodes when move (#5885)
* skip nonselectable nodes when move

* fix

* docs

* remove ignoreNonSelectable

* docs

* revert
2025-06-10 15:37:56 -07:00
..

Node Types APIs

The Node union type represents all of the different types of nodes that occur in a Slate document tree.

type Node = Editor | Element | Text

type Descendant = Element | Text
type Ancestor = Editor | Element