.startsWith使用打字稿时引发错误

时间:2020-04-20 14:02:30

标签: typescript discord.js

每当我使用.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.");
});

0 个答案:

没有答案