summary refs log tree commit diff
path: root/src/schemas/api/bots/SendableApplicationCommandDataSchema.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/schemas/api/bots/SendableApplicationCommandDataSchema.ts')
-rw-r--r--src/schemas/api/bots/SendableApplicationCommandDataSchema.ts16
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 }