AutoMod/src/struct/Command.ts

10 lines
167 B
TypeScript
Raw Normal View History

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