feat(APIGuildPreview): add stickers (#279)

This commit is contained in:
Suneet Tipirneni
2022-01-19 14:08:19 -05:00
committed by GitHub
parent 2c1fbda621
commit 310c68f034
4 changed files with 16 additions and 0 deletions

View File

@@ -582,6 +582,10 @@ export interface APIGuildPreview {
* The description for the guild
*/
description: string;
/**
* Custom guild stickers
*/
stickers: APISticker[];
}
/**

View File

@@ -590,6 +590,10 @@ export interface APIGuildPreview {
* The description for the guild
*/
description: string;
/**
* Custom guild stickers
*/
stickers: APISticker[];
}
/**

View File

@@ -582,6 +582,10 @@ export interface APIGuildPreview {
* The description for the guild
*/
description: string;
/**
* Custom guild stickers
*/
stickers: APISticker[];
}
/**

View File

@@ -590,6 +590,10 @@ export interface APIGuildPreview {
* The description for the guild
*/
description: string;
/**
* Custom guild stickers
*/
stickers: APISticker[];
}
/**