From 877577badcaa17b0221b75d79c55b6de3eff4e3a Mon Sep 17 00:00:00 2001 From: Sugden <28943913+NotSugden@users.noreply.github.com> Date: Mon, 20 Jan 2020 21:02:02 +0000 Subject: [PATCH] typings(RichPresenceAssets): *ImageURL's options are optional (#3727) --- typings/index.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/typings/index.d.ts b/typings/index.d.ts index 6d719a347..457f86a62 100644 --- a/typings/index.d.ts +++ b/typings/index.d.ts @@ -1197,8 +1197,8 @@ declare module 'discord.js' { public largeText: string | null; public smallImage: Snowflake | null; public smallText: string | null; - public largeImageURL(options: ImageURLOptions): string | null; - public smallImageURL(options: ImageURLOptions): string | null; + public largeImageURL(options?: ImageURLOptions): string | null; + public smallImageURL(options?: ImageURLOptions): string | null; } export class Role extends Base {