retroload
Version:
Command line utility for converting tape archive files of historical computers into sound for loading them on real devices
9 lines (8 loc) • 333 B
TypeScript
import { type AdapterDefinition } from 'retroload-lib';
import { type CustomCommand } from './CustomCommand.js';
import { Help } from 'commander';
export declare class CustomHelp extends Help {
private readonly adapters;
constructor(adapters: AdapterDefinition[]);
formatHelp(cmd: CustomCommand, helper: Help): string;
}