Type Alias CommandReplyContext

CommandReplyContext: {
    say: (
        msg: string | CardContent,
    ) => Promise<
        Awaited<ReturnType<ChatbotEndpoints["messages"]["sendChatbotMessage"]>>,
    >;
}