Skip to main content
Version: v1

PlaceholderTree TypeAlias

A 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