UNPKG

371 BTypeScriptView Raw
1import { Command } from './Command';
2import { Output } from './Output/index';
3export declare class Topic {
4 static topic: string;
5 static description?: string;
6 static hidden: boolean;
7 static group: string;
8 commands: Array<typeof Command>;
9 out: Output;
10 constructor(commands: Array<typeof Command>, out: Output);
11 static readonly id: string;
12}