Version: v1On this pagePlaceholderTree TypeAliasA tree whose nodes are either TreeNodes or a placeholder Signature export declare type PlaceholderTree<TPlaceholder = never> = TreeNode<PlaceholderTree<TPlaceholder>, NodeId> | TPlaceholder; Type Parameters Parameter Default Description TPlaceholder never