* Inserts an item into a parent node as a child. * * @param parentKey - The key of the parent item to insert into. `null` for the root. * @param index - The index within the parent to insert into. * @param value - The value to insert.
(parentKey: Key | null, index: number, ...values: T[])
| 60 | * @param value - The value to insert. |
| 61 | */ |
| 62 | insert(parentKey: Key | null, index: number, ...values: T[]): void; |
| 63 | |
| 64 | /** |
| 65 | * Inserts items into the list before the item at the given key. |
no outgoing calls
no test coverage detected