Merge pull request #968 from discordeno/createwebhook-avatar-is-optional

fix: CreateWebhook.avatar is optional
This commit is contained in:
Skillz4Killz
2021-05-21 13:24:54 -04:00
committed by GitHub
+1 -1
View File
@@ -2,5 +2,5 @@ export interface CreateWebhook {
/** Name of the webhook (1-80 characters) */
name: string;
/** Image for the default webhook avatar */
avatar: string | null;
avatar?: string | null;
}