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

16 lines (15 loc) 533 B
import { BaseCommand } from '../base-command.js'; export default class Preview extends BaseCommand<typeof Preview> { static args: { file: import("@oclif/core/interfaces").Arg<string, Record<string, unknown>>; }; static description: string; static examples: string[]; static flags: { live: import("@oclif/core/interfaces").BooleanFlag<boolean>; open: import("@oclif/core/interfaces").BooleanFlag<boolean>; }; run(): Promise<void>; private preview; private waitForChanges; }