UNPKG

@commercelayer/cli-dev

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