@commercelayer/cli-dev
Version:
Commerce Layer CLI development tools and helpers
12 lines (11 loc) • 403 B
TypeScript
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 {};