@theophilusdev/conduit
    Preparing search index...

    Interface ThreadTitleChangePayload

    interface ThreadTitleChangePayload {
        author: string;
        name: string;
        participantIDs: string[];
        threadID: string;
        type: "thread:title_change";
        add(userID: string): Promise<void>;
        changeAdminStatus(userID: string, isAdmin: boolean): Promise<void>;
        changeNickname(nickname: string, userID: string): Promise<void>;
        changeTitle(title: string): Promise<void>;
        kick(userID: string): Promise<void>;
        send(body: ConduitSendableBody): Promise<SentMessage>;
        sendTypingIndicator(): () => void;
        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