@theophilusdev/conduit
    Preparing search index...

    Interface ThreadTitleChangePayload

    interface ThreadTitleChangePayload {
        author: string;
        name: string;
        participantIDs: string[];
        threadID: string;
        type: "thread:title_change";
        send(body: ConduitSendableBody): Promise<SentMessage>;
        shareContact(
            message: ConduitSendableBody,
            userID: string,
        ): Promise<SentMessage>;
    }

    Hierarchy (View Summary)

    Index

    Properties

    author: string
    name: string
    participantIDs: string[]
    threadID: string
    type: "thread:title_change"

    Methods