frontpage/lib/commands/types.tsx
2022-01-14 14:27:19 +01:00

22 lines
451 B
TypeScript

import type { CommandInterface } from ".";
export interface Flag {
short: string;
long: string;
desc: string;
}
interface SubCommand {
name: string;
desc: string;
}
export interface Command {
name: string;
hidden?: boolean;
desc: string;
flags?: Record<string,Flag>;
subcommands?: Record<string,SubCommand>;
execute: (flags: string[], args: string[], raw: string, cmdIf: CommandInterface) => string[];
}