UNPKG

bump-cli

Version:

The Bump CLI is used to interact with your API documentation hosted on Bump.sh by using the API of developers.bump.sh

14 lines (13 loc) 560 B
import { BaseCommand } from '../base-command.js'; export default class Overlay extends BaseCommand<typeof Overlay> { static args: { file: import("@oclif/core/interfaces").Arg<string, Record<string, unknown>>; overlay: import("@oclif/core/interfaces").Arg<string, Record<string, unknown>>; }; static description: string; static examples: string[]; static flags: { out: import("@oclif/core/interfaces").OptionFlag<string | undefined, import("@oclif/core/interfaces").CustomOptions>; }; run(): Promise<void>; }