refactor(Embed): remove add field (#7522)

This commit is contained in:
Parbez
2022-03-02 15:07:30 +05:30
committed by GitHub
parent 2d4971b032
commit 8478d2f4de
2 changed files with 0 additions and 18 deletions

View File

@@ -318,15 +318,6 @@ describe('Embed', () => {
});
});
test('GIVEN an embed using Embed#addField THEN returns valid toJSON data', () => {
const embed = new Embed();
embed.addField({ name: 'foo', value: 'bar' });
expect(embed.toJSON()).toStrictEqual({
fields: [{ name: 'foo', value: 'bar' }],
});
});
test('GIVEN an embed using Embed#addFields THEN returns valid toJSON data', () => {
const embed = new Embed();
embed.addFields({ name: 'foo', value: 'bar' });

View File

@@ -175,15 +175,6 @@ export class UnsafeEmbed implements Equatable<APIEmbed | UnsafeEmbed> {
return typeof this.data.color === 'number' ? `#${this.data.color.toString(16).padStart(6, '0')}` : this.data.color;
}
/**
* Adds a field to the embed (max 25)
*
* @param field The field to add.
*/
public addField(field: APIEmbedField): this {
return this.addFields(field);
}
/**
* Adds fields to the embed (max 25)
*