diff --git a/src/index.ts b/src/index.ts index cc04a390..b2bf1969 100644 --- a/src/index.ts +++ b/src/index.ts @@ -9,7 +9,7 @@ import {renderList} from './list' import RootHelp from './root' import {stdtermwidth} from './screen' import {compact, sortBy, template, uniqBy} from './util' -export {getHelpClass} from './util' +import {getHelpClass} from './util' const wrap = require('wrap-ansi') const { @@ -256,3 +256,8 @@ export default class Help extends HelpBase { return this.formatCommand(command) } } + +export { + Help, + getHelpClass, +}