@softcose/softchat - v0.1.0
    Preparing search index...

    Type Alias ChatRelation

    ChatRelation:
        | Readonly<{ kind: "none" }>
        | Readonly<
            {
                eventId: NostrEventId;
                kind: "reply";
                legacyUnmarked?: boolean;
                relayHint?: string;
            },
        >
        | Readonly<
            {
                eventId: NostrEventId;
                kind: "forward";
                originalAuthor: NostrPublicKey;
                relayHint?: string;
            },
        >

    Canonical kind-14 message relation.