From 11fc7e1e2143cc94a1cda41c51a1d576c5405353 Mon Sep 17 00:00:00 2001 From: DjDeveloperr Date: Mon, 25 Jan 2021 19:00:58 +0530 Subject: [PATCH] fix --- src/structures/embed.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/structures/embed.ts b/src/structures/embed.ts index 2c06f39..1936ddf 100644 --- a/src/structures/embed.ts +++ b/src/structures/embed.ts @@ -81,8 +81,6 @@ export class Embed { } /** Set URL of the Embed */ - setURL(url: string): Embed - setURL(url: URL): Embed setURL(url: string | URL): Embed { this.url = typeof url === 'object' ? url.toString() : url return this