feat(RichEmbed): add timestamp support for setTimestamp (#3061)

This commit is contained in:
SpaceEEC
2019-02-12 10:15:37 +01:00
committed by GitHub
parent 1618829cc6
commit 49e8bd9edd
2 changed files with 4 additions and 3 deletions

2
typings/index.d.ts vendored
View File

@@ -1030,7 +1030,7 @@ declare module 'discord.js' {
public setFooter(text: StringResolvable, icon?: string): this;
public setImage(url: string): this;
public setThumbnail(url: string): this;
public setTimestamp(timestamp?: Date): this;
public setTimestamp(timestamp?: Date | number): this;
public setTitle(title: StringResolvable): this;
public setURL(url: string): this;
}