UNPKG

fedapay-cli

Version:
17 lines (16 loc) 401 B
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<string>; environment: flags.IOptionFlag<string>; }; init(): Promise<void>; }