vylbot-app/tests/__mocks/commands/normal.ts

9 lines
181 B
TypeScript
Raw Normal View History

import { Command } from "../../../src/type/command";
export default class normal extends Command {
constructor() {
super();
this._category = "General";
}
}