1 files changed, 0 insertions, 29 deletions
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
|