remove unneeded comments

merge-requests/6/merge
Matthew 2020-06-01 19:15:40 +00:00
parent 0aea3d1bd2
commit f9753b25fb
No known key found for this signature in database
GPG Key ID: A67F9A2EBA4FD813
1 changed files with 0 additions and 8 deletions

View File

@ -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;