add(types): nsfw field

* feat(types): add nsfw field to Guild

Reference: 5e63e309bb

Co-authored-by: ITOH <72305210+itohatweb@users.noreply.github.com>
This commit is contained in:
keenkairos
2021-05-01 16:03:00 +04:00
committed by GitHub
parent bfb8179f20
commit acc8eeb074

View File

@@ -107,4 +107,6 @@ export interface Guild {
approximatePresenceCount?: number;
/** The welcome screen of a Community guild, shown to new members, returned when in the invite object */
welcomeScreen?: WelcomeScreen;
/** `true` if this guild is designated as NSFW */
nsfw: boolean;
}