fedapay-cli
Version:
A command-line tool for FedaPay
18 lines (17 loc) • 362 B
TypeScript
import Command from '@oclif/command';
/**
* Profile Class extending superClass Command
*/
export default class Profile extends Command {
/**
* @param string
* Description of the profile command
*/
static description: string;
/**
* @param string
* profile usage
*/
static usage: string;
run(): Promise<void>;
}