Skip to content

Commit

Permalink
ts hotfix
Browse files Browse the repository at this point in the history
  • Loading branch information
JustCat80 committed Aug 29, 2021
1 parent 1627d78 commit 4ea749b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -114,11 +114,11 @@ declare namespace Eris {
type ApplicationCommandOptions = ApplicationCommandOptionsSubCommand | ApplicationCommandOptionsSubCommandGroup | ApplicationCommandOptionsWithValue;
type ApplicationCommandOptionsWithValue = ApplicationCommandOptionsString | ApplicationCommandOptionsInteger | ApplicationCommandOptionsBoolean | ApplicationCommandOptionsUser | ApplicationCommandOptionsChannel | ApplicationCommandOptionsRole | ApplicationCommandOptionsMentionable | ApplicationCommandOptionsNumber;
interface ApplicationCommandOptionsSubCommand {
type: Constants["ApplicationCommandOptionTypes"]["SUB_COMMAND_GROUP"];
type: Constants["ApplicationCommandOptionTypes"]["SUB_COMMAND"];
name: string;
description: string;
required?: boolean;
options: ApplicationCommandOptionsWithValue[];
options?: ApplicationCommandOptionsWithValue[];
}
interface ApplicationCommandOptionsSubCommandGroup {
type: Constants["ApplicationCommandOptionTypes"]["SUB_COMMAND_GROUP"];
Expand Down

0 comments on commit 4ea749b

Please sign in to comment.