每当我使用.startsWith()
时,都会出现此错误:
Property 'startsWith' does not exist on type 'string'.
如果我在.startsWith()
上尝试index.js
,但在index.ts
上却不行,就可以使用。
这就是我所拥有的:
client.on("message", function (msg) {
if (msg.author.bot) {
return;
}
if (!msg.content.startsWith(ConfigFile.config.prefix)) {
return;
}
msg.channel.send(msg.author.username + " this better work.");
});