打字稿父引用

时间:2017-01-24 09:42:03

标签: object recursion typescript interface

我有一个递归的TS对象,我用它来构建一棵树。

这是界面定义:

carthage update --platform iOS --no-use-binaries

我需要从孩子回到父母。 有没有更好的方法来实现这一点,而不是将“父”属性添加到我的界面?

export interface UIItem
{
    EnumValue    : myEnum;
    children    ?: Array<UIItem>;
    expanded     : boolean;
}

非常感谢您提前:))

0 个答案:

没有答案