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