AppleSauce
    Preparing search index...

    Type Alias ThreadItem

    type ThreadItem = {
        event: NostrEvent;
        parent?: ThreadItem;
        refs: ThreadReferences;
        replies: Set<ThreadItem>;
        root?: ThreadItem;
    }
    Index

    Properties

    event: NostrEvent

    underlying nostr event

    parent?: ThreadItem

    the parent event this is replying to

    replies: Set<ThreadItem>

    direct child replies

    root?: ThreadItem

    the thread root, according to this event