From 5e86d7ab9c5200d794c3adb2b422d20a2aefd2ce Mon Sep 17 00:00:00 2001 From: Flam3rboy <34555296+Flam3rboy@users.noreply.github.com> Date: Sat, 13 Aug 2022 02:00:50 +0200 Subject: restructure to single project --- util/src/schemas/ChannelModifySchema.ts | 29 ----------------------------- 1 file changed, 29 deletions(-) delete mode 100644 util/src/schemas/ChannelModifySchema.ts (limited to 'util/src/schemas/ChannelModifySchema.ts') diff --git a/util/src/schemas/ChannelModifySchema.ts b/util/src/schemas/ChannelModifySchema.ts deleted file mode 100644 index 3cfcf7d2..00000000 --- a/util/src/schemas/ChannelModifySchema.ts +++ /dev/null @@ -1,29 +0,0 @@ -import { ChannelPermissionOverwriteType, ChannelType } from ".."; - - -export interface ChannelModifySchema { - /** - * @maxLength 100 - */ - name?: string; - type?: ChannelType; - topic?: string; - icon?: string | null; - bitrate?: number; - user_limit?: number; - rate_limit_per_user?: number; - position?: number; - permission_overwrites?: { - id: string; - type: ChannelPermissionOverwriteType; - allow: string; - deny: string; - }[]; - parent_id?: string; - id?: string; // is not used (only for guild create) - nsfw?: boolean; - rtc_region?: string; - default_auto_archive_duration?: number; - flags?: number; - default_thread_rate_limit_per_user?: number; -} \ No newline at end of file -- cgit 1.5.1