add(types): withExpiration field to GetInvite (#884)

Reference: https://github.com/discord/discord-api-docs/commit/2c9f17887a8e5c95d48b93901f4543beda4c09be
This commit is contained in:
keenkairos
2021-05-01 12:59:57 +01:00
committed by GitHub
parent 102cab643e
commit 684ce6a693
+2
View File
@@ -2,4 +2,6 @@
export interface GetInvite {
/** Whether the invite should contain approximate member counts */
withCounts?: boolean;
/** Whether the invite should contain the expiration date. */
withExpiration?: boolean;
}