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

8 lines (7 loc) 289 B
import { Command } from '@oclif/core'; import { BumpApi } from './api/index.js'; export declare abstract class BaseCommand<T extends typeof Command> extends Command { protected _bump: BumpApi; protected get bump(): BumpApi; protected d(formatter: any, ...args: any[]): void; }