swc/crates/swc_bundler/tests/.cache/deno/10ecf12c1b876c0c6ef22f96c5340b05644d69eb.ts
2021-11-09 20:42:49 +09:00

13 lines
425 B
TypeScript

// Loaded from https://deno.land/x/discordeno@11.0.0-rc.2/src/types/channels/channel_pins_update.ts
/** https://discord.com/developers/docs/topics/gateway#channel-pins-update */
export interface ChannelPinsUpdate {
/** The id of the guild */
guildId?: string;
/** The id of the channel */
channelId: string;
/** The time at which the most recent pinned message was pinned */
lastPinTimestamp?: string | null;
}