Type Alias MessageReplyContext

MessageReplyContext: {
    reply: (
        msg: string,
    ) => Promise<
        Awaited<
            ReturnType<TeamChatEndpoints["chatMessages"]["sendChatMessage"]>,
        >,
    >;
}