fedapay-cli
Version:
A command-line tool for FedaPay
25 lines (24 loc) • 643 B
TypeScript
import { flags } from '@oclif/command';
import Command from '../base';
export default class Samples extends Command {
/**
* Samples class extending Command Class
*/
static description: string;
/**
* @param string
* custom usage string for help
* this overrides the default usage
*/
static usage: string;
/**
* @param object
* Declaration of the command flags
*/
static flags: {
help: import("@oclif/parser/lib/flags").IBooleanFlag<void>;
'api-key': flags.IOptionFlag<string>;
environment: flags.IOptionFlag<string>;
};
run(): Promise<void>;
}