Create add_guild_discovery_subcategory.ts

This commit is contained in:
ITOH
2021-04-18 20:31:09 +02:00
parent 135ba5ef3c
commit 2aafb75e96

View File

@@ -0,0 +1,12 @@
import { SnakeCasedPropertiesDeep } from "../util.ts";
export interface AddGuildDiscoverySubcategory {
/** The guild Id of the subcategory was added to */
guildId: string;
/** The Id of the subcategory added */
categoryId: number;
}
export type DiscordAddGuildDiscoverySubcategory = SnakeCasedPropertiesDeep<
AddGuildDiscoverySubcategory
>;