UNPKG

590 BJavaScriptView Raw
1"use strict";
2// `getHelpClass` tests require an oclif project for testing so
3// it is re-using the setup here to be able to do a lookup for
4// this sample help class file in tests, although it is not needed
5// for @oclif/plugin-help itself.
6Object.defineProperty(exports, "__esModule", { value: true });
7const _1 = require(".");
8class default_1 extends _1.HelpBase {
9 showHelp() {
10 console.log('help');
11 }
12 showCommandHelp() {
13 console.log('command help');
14 }
15 getCommandHelpForReadme() {
16 return 'help for readme';
17 }
18}
19exports.default = default_1;