| 368 | * This should be considered UNSTABLE and might change in the future |
| 369 | */ |
| 370 | export interface Command { |
| 371 | name: string; |
| 372 | description: string; |
| 373 | kind: Internal.CommandType; |
| 374 | group?: Group; |
| 375 | options?: OptionMap; |
| 376 | ackMode: AckMode; |
| 377 | ackMessageFlags: MessageFlags; |
| 378 | defaultMemberPermissions?: string; |
| 379 | cb: (ctx: {}, args: {}) => any; |
| 380 | } |
| 381 | |
| 382 | export type OptionType = Option["kind"]; |
| 383 |