import APIClient from './core/api-client'; import { AppUser } from './core/types'; import { Command as Base } from '@oclif/command'; export default abstract class BaseCommand extends Base { base: string; apiClient(debug?: boolean): Promise; /** * Get the current user logged into the CLI * @returns {Promise} A promise w/ the user object */ getCurrentUser(debug?: boolean): Promise; }