Skip to content

Commit

Permalink
fix: Argument
Browse files Browse the repository at this point in the history
  • Loading branch information
xhyrom committed Feb 20, 2022
1 parent 71fb8f4 commit 539eca1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/structures/Argument.ts
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ export class Argument {
public name: string;
public description: string;
public type: ArgumentType | keyof typeof ArgumentType;
public required = false;
public required?: boolean;
public choices?: Array<ArgumentChoice>;
public arguments?: Array<Argument>;
/**
Expand Down

0 comments on commit 539eca1

Please sign in to comment.