@heroku-cli/command
Version:
base class for Heroku CLI commands
9 lines (8 loc) • 399 B
JavaScript
import { Flags } from '@oclif/core';
export { app, remote } from './app.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 { Flags } from '@oclif/core';