From f9753b25fb8b190677168cd1e6c0ee8e0afdb3bc Mon Sep 17 00:00:00 2001 From: Matthew R Date: Mon, 1 Jun 2020 19:15:40 +0000 Subject: [PATCH] remove unneeded comments --- src/class/RichEmbed.ts | 8 -------- 1 file changed, 8 deletions(-) diff --git a/src/class/RichEmbed.ts b/src/class/RichEmbed.ts index 38cf297..b4c99a6 100644 --- a/src/class/RichEmbed.ts +++ b/src/class/RichEmbed.ts @@ -30,14 +30,6 @@ export default class RichEmbed implements EmbedOptions { fields?: {name: string, value: string, inline?: boolean}[] constructor(data: EmbedOptions = {}) { - /* - let types: { - title?: string, type?: string, description?: string, url?: string, timestamp?: Date, color?: number, fields?: {name: string, value: string, inline?: boolean}[] - footer?: { text: string, icon_url?: string, proxy_icon_url?: string}, image?: { url?: string, proxy_url?: string, height?: number, width?: number }, - thumbnail?: { url?: string, proxy_url?: string, height?: number, width?: number }, video?: { url?: string, height?: number, width?: number }, - provider?: { name?: string, url?: string}, author?: { name?: string, url?: string, proxy_icon_url?: string, icon_url?: string} - }; - */ this.title = data.title; this.description = data.description; this.url = data.url;