fix: EmbedField takes StringResolvable not string

This commit is contained in:
RDambrosio016
2020-02-23 15:56:17 -05:00
parent f33dccb7c0
commit c1bdd78ad3

4
typings/index.d.ts vendored
View File

@@ -2182,8 +2182,8 @@ declare module 'discord.js' {
}
interface EmbedField {
name: string;
value: string;
name: StringResolvable;
value: StringResolvable;
inline?: boolean;
}