interface Tree {
    children: {
        text?: string;
        type: "LINEBREAK" | "STR" | "SMILEY";
        url?: string;
    }[];
    type: string;
}

Properties

Properties

children: { text?: string; type: "LINEBREAK" | "STR" | "SMILEY"; url?: string }[]
type: string