From 4f322891947a252bd506037403bc73ae8f6c62c3 Mon Sep 17 00:00:00 2001 From: Ollie Jones <35707991+oathompsonjones@users.noreply.github.com> Date: Mon, 2 Dec 2019 21:35:23 +0000 Subject: [PATCH] Correction to previous type change. `timestamp`s do not work with `string`s at all, the data type must be `Date` --- index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.d.ts b/index.d.ts index c75eee053..bb592814f 100644 --- a/index.d.ts +++ b/index.d.ts @@ -316,7 +316,7 @@ declare namespace Eris { title?: string; description?: string; url?: string; - timestamp?: string | Date; + timestamp?: Date; color?: number; footer?: { text: string; icon_url?: string; proxy_icon_url?: string }; image?: { url?: string; proxy_url?: string; height?: number; width?: number };