types(GatewayChannelPinsUpdateDispatch): make last_pin_timestamp nullable (#46)

Ref: https://github.com/discord/discord-api-docs/commit/14460930d859237dc6cf8d464378b482d712fd6e

Ref: discord/ discord-api-docs #2215
This commit is contained in:
TTtie
2020-12-13 13:00:51 +02:00
committed by GitHub
parent 6296ac9e4f
commit 8d77142ca5
+1 -1
View File
@@ -298,7 +298,7 @@ export type GatewayChannelPinsUpdateDispatch = DataPayload<
{
guild_id?: string;
channel_id: string;
last_pin_timestamp?: string;
last_pin_timestamp?: string | null;
}
>;