Tiny Congress Frontend
    Preparing search index...
    interface ConversationBranch {
        author: { avatar?: string; id: string; isAI: boolean; name: string };
        content: string;
        id: string;
        isHidden: boolean;
        isSelected: boolean;
        isViable: boolean;
        parentId: string | null;
        timestamp: Date;
        votes: Vote[];
    }
    Index

    Properties

    author: { avatar?: string; id: string; isAI: boolean; name: string }
    content: string
    id: string
    isHidden: boolean
    isSelected: boolean
    isViable: boolean
    parentId: string | null
    timestamp: Date
    votes: Vote[]