fedapay-cli
Version:
A command-line tool for FedaPay
17 lines (16 loc) • 401 B
TypeScript
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>;
}