AutoMod/src/struct/Command.ts

11 lines
195 B
TypeScript
Raw Normal View History

2021-10-08 23:36:46 +02:00
class Command {
name: string;
aliases: string[] | null;
description: string | null;
2021-10-09 22:20:06 +02:00
syntax?: string | null;
2021-10-08 23:36:46 +02:00
run: Function;
serverOnly: boolean;
}
export default Command;