From 1ad6f0e018b8632d96e6c705f0f26a282e385c60 Mon Sep 17 00:00:00 2001 From: Ollie Jones <35707991+oathompsonjones@users.noreply.github.com> Date: Tue, 3 Dec 2019 06:35:13 +0000 Subject: [PATCH] Changed back to string | Date Stop devs gettings loads of errors if they have already been passing strings not dates --- index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.d.ts b/index.d.ts index bb592814f..c75eee053 100644 --- a/index.d.ts +++ b/index.d.ts @@ -316,7 +316,7 @@ declare namespace Eris { title?: string; description?: string; url?: string; - timestamp?: Date; + timestamp?: string | Date; color?: number; footer?: { text: string; icon_url?: string; proxy_icon_url?: string }; image?: { url?: string; proxy_url?: string; height?: number; width?: number };