You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
611 B
28 lines
611 B
2 years ago
|
export interface OptionInterface {
|
||
|
name: string,
|
||
|
description: string | null,
|
||
|
default: any,
|
||
|
value: any,
|
||
|
shortcut: string | null,
|
||
|
isArray: boolean,
|
||
|
isNegatable: boolean,
|
||
|
isValueOptional: boolean,
|
||
|
isValueRequired: boolean
|
||
|
acceptValue: boolean
|
||
|
}
|
||
|
|
||
|
export interface ArgumentInterface {
|
||
|
name: string,
|
||
|
description: string|null,
|
||
|
default: any,
|
||
|
isArray: boolean,
|
||
|
isRequired: boolean,
|
||
|
}
|
||
|
|
||
|
export interface CommandResponseInterface {
|
||
|
class: string,
|
||
|
name: string,
|
||
|
description: string,
|
||
|
options: OptionInterface[],
|
||
|
arguments: ArgumentInterface[],
|
||
|
}
|