oclif
Version:
oclif: create your own CLI
12 lines (11 loc) • 398 B
TypeScript
import { Command, HelpBase } from '@oclif/core';
interface MaybeCompatibleHelp extends HelpBase {
command?: (command: Command.Cached) => string;
formatCommand?: (command: Command.Cached) => string;
}
export declare class HelpCompatibilityWrapper {
inner: MaybeCompatibleHelp;
constructor(inner: MaybeCompatibleHelp);
formatCommand(command: Command.Cached): string;
}
export {};