Tree<T>: (T | {
    forest: Tree<T>;
    label: string;
})[]

Type Parameters

  • T = unknown