types(webhook): avatar can be null (#8541)

This commit is contained in:
D Trombett
2022-09-02 17:30:06 +02:00
committed by GitHub
parent 9b4116b659
commit f77612a55e

View File

@@ -2811,7 +2811,7 @@ export class VoiceState extends Base {
export class Webhook extends WebhookMixin() {
private constructor(client: Client, data?: RawWebhookData);
public avatar: string;
public avatar: string | null;
public avatarURL(options?: ImageURLOptions): string | null;
public channelId: Snowflake;
public readonly client: Client;