@heroku-cli/command
Version:
base class for Heroku CLI commands
10 lines (9 loc) • 452 B
JavaScript
import * as Flags from '@oclif/core/flags';
export { app, remote } from './app.js';
export { noWrap } from './no-wrap.js';
export { org } from './org.js';
export { pipeline } from './pipeline.js';
export { team } from './team.js';
// Explicitly export oclif flag types using object destructuring, sorted alphabetically
export const { boolean, custom, directory, file, integer, option, string, url } = Flags;
export * as Flags from '@oclif/core/flags';