1 | import { BaseCommand } from './base.js';
|
2 | import type { CommandMetaData } from '../types.js';
|
3 |
|
4 |
|
5 |
|
6 | export declare class HelpCommand extends BaseCommand {
|
7 | #private;
|
8 | |
9 |
|
10 |
|
11 | static commandName: string;
|
12 | static description: string;
|
13 | |
14 |
|
15 |
|
16 | name: string;
|
17 | |
18 |
|
19 |
|
20 | protected renderDescription(command: CommandMetaData): void;
|
21 | |
22 |
|
23 |
|
24 | protected renderUsage(command: CommandMetaData): void;
|
25 | |
26 |
|
27 |
|
28 | protected renderList(command: CommandMetaData): void;
|
29 | |
30 |
|
31 |
|
32 | protected renderHelp(command: CommandMetaData): void;
|
33 | |
34 |
|
35 |
|
36 | run(): Promise<void>;
|
37 | }
|