UNPKG

retroload

Version:

Command line utility for converting tape archive files of historical computers into sound for loading them on real devices

17 lines 482 B
import { Command } from 'commander'; import { CustomHelp } from './CustomHelp.js'; export class CustomCommand extends Command { constructor(adapters) { super(undefined); Object.defineProperty(this, "adapters", { enumerable: true, configurable: true, writable: true, value: adapters }); } createHelp() { return new CustomHelp(this.adapters); } } //# sourceMappingURL=CustomCommand.js.map