UNPKG

@shipengine/connect

Version:

The official developer tooling for building ShipEngine connect apps

15 lines (14 loc) 486 B
import BaseCommand from './base-command'; import APIClient from './core/api-client'; import { ConnectApp } from './core/types'; /** * Base class for commands that operate on an existing app with a logged in user */ export default abstract class AppBaseCommand extends BaseCommand { static flags: { debug: import("@oclif/parser/lib/flags").IBooleanFlag<boolean>; }; protected client?: APIClient; protected platformApp?: ConnectApp; init(): Promise<void>; }