10 lines
167 B
TypeScript
10 lines
167 B
TypeScript
|
class Command {
|
||
|
name: string;
|
||
|
aliases: string[] | null;
|
||
|
description: string | null;
|
||
|
run: Function;
|
||
|
serverOnly: boolean;
|
||
|
}
|
||
|
|
||
|
export default Command;
|