import Command, { flags } from '@oclif/command'; import UserConfig from './helpers/user-config'; /** * Base command class */ export default abstract class extends Command { userConfig: UserConfig; /** * The command global flags */ static flags: { 'api-key': flags.IOptionFlag; environment: flags.IOptionFlag; }; init(): Promise; }