Parent Directory
|
Revision Log
chore: add old version archive branches (2.x to 9.x-dev)
1 | rakinar2 | 577 | import DiscordClient from "../../client/Client"; |
2 | |||
3 | export default abstract class BaseCLICommand { | ||
4 | requiredArgs = 0; | ||
5 | requiredOptions = 0; | ||
6 | |||
7 | constructor(protected name: string, protected category: string, protected aliases: string[] = []) { | ||
8 | |||
9 | } | ||
10 | |||
11 | getName(): string { | ||
12 | return this.name; | ||
13 | } | ||
14 | |||
15 | getCategory(): string { | ||
16 | return this.category; | ||
17 | } | ||
18 | |||
19 | getAliases(): string[] { | ||
20 | return this.aliases; | ||
21 | } | ||
22 | |||
23 | public abstract run(client: DiscordClient, argv?: string[], args?: string[], options?: string[]): Promise<void>; | ||
24 | } |
[email protected] | ViewVC Help |
Powered by ViewVC 1.1.26 |