1 files changed, 8 insertions, 8 deletions
diff --git a/src/schemas/api/bots/SendableApplicationCommandDataSchema.ts b/src/schemas/api/bots/SendableApplicationCommandDataSchema.ts
index 7dfbbd00..3f5496e7 100644
--- a/src/schemas/api/bots/SendableApplicationCommandDataSchema.ts
+++ b/src/schemas/api/bots/SendableApplicationCommandDataSchema.ts
@@ -3,12 +3,12 @@ import { ApplicationCommandOption } from "../developers";
import { ApplicationCommandType } from "./ApplicationCommandSchema";
export interface SendableApplicationCommandDataSchema {
- id: Snowflake;
- type?: ApplicationCommandType;
- name: string;
- version: Snowflake;
- application_command?: object;
- options?: ApplicationCommandOption[];
- target_id?: Snowflake;
- attachments?: object[]; // idk the type
+ id: Snowflake;
+ type?: ApplicationCommandType;
+ name: string;
+ version: Snowflake;
+ application_command?: object;
+ options?: ApplicationCommandOption[];
+ target_id?: Snowflake;
+ attachments?: object[]; // idk the type
}
|