@react-types/shared 3.0.0-nightly-e24140214-260309 → 3.0.0-nightly-796738501-260310
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/collections.d.ts +4 -0
package/package.json
CHANGED
package/src/collections.d.ts
CHANGED
|
@@ -218,6 +218,10 @@ export interface Node<T> {
|
|
|
218
218
|
prevKey?: Key | null,
|
|
219
219
|
/** The key of the node after this node. */
|
|
220
220
|
nextKey?: Key | null,
|
|
221
|
+
/** The first child key of this node. */
|
|
222
|
+
firstChildKey?: Key | null,
|
|
223
|
+
/** The last child key of this node. */
|
|
224
|
+
lastChildKey?: Key | null,
|
|
221
225
|
/** Additional properties specific to a particular node type. */
|
|
222
226
|
props?: any,
|
|
223
227
|
/** @private */
|