UNPKG

wakitsu

Version:

Hobby project for managing anime watch list on Kitsu through CLI

16 lines 453 B
import { CLIFlag } from '../cli.js'; export class TestFlag extends CLIFlag { name = ['!', '!']; type = 'simple'; helpAliases = [...this.name]; shortHelpDisplay = `It could literally do anything...?`; getHelpLogs() { return [ ['h1', ['Test Command']], ['p', 'Do ;m;NOT ;bk;execute this command unless you know what it does.'], ]; } exec() { } } //# sourceMappingURL=flag-test.js.map