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

17 lines (16 loc) 647 B
import Deploy from './commands/deploy.js'; import Diff from './commands/diff.js'; import Overlay from './commands/overlay.js'; import Preview from './commands/preview.js'; export declare const COMMANDS: { deploy: typeof Deploy; diff: typeof Diff; overlay: typeof Overlay; preview: typeof Preview; }; export { DiffResponse, PreviewResponse, VersionResponse, WithDiff } from './api/models.js'; export { default as Deploy } from './commands/deploy.js'; export { default as Preview } from './commands/preview.js'; export * as Diff from './core/diff.js'; export * as Overlay from './core/overlay.js'; export { run } from '@oclif/core';