Module '"discord.js"' has no exported member 'Intents'.
My code is:
import dotenv from 'dotenv';
const bot = new Client({
intents: [
Intents.FLAGS.GUILDS,
Intents.FLAGS.GUILD_MESSAGE
]
});
bot.on('ready', ()=>{
console.log("ready")
})
bot.login(process.env.TOKEN)```