fedapay-cli
Version:
A command-line tool for FedaPay
34 lines (33 loc) • 888 B
TypeScript
import { flags } from '@oclif/command';
import Transactions from '../transactions';
/**
* TransactionToken class extending super class Transactions
*/
export default class TransactionsToken extends Transactions {
/**
* @params String
* Description of the command transactions:token
*/
static description: string;
/**
* The command usage
* @var string
*/
static usage: string;
/**
* @param object
* Declaration of the command flags
*/
static flags: {
id: import("@oclif/parser/lib/flags").IOptionFlag<number>;
help: import("@oclif/parser/lib/flags").IBooleanFlag<void>;
'api-key': flags.IOptionFlag<string>;
environment: flags.IOptionFlag<string>;
};
/**
* @param String[]
* Some example with the token command
*/
static examples: string[];
run(): Promise<void>;
}