7 lines
133 B
TypeScript
7 lines
133 B
TypeScript
class CommandCategory {
|
|
friendlyName: string;
|
|
description: string;
|
|
aliases: string[];
|
|
}
|
|
|
|
export default CommandCategory;
|