fedapay-cli
Version:
A command-line tool for FedaPay
38 lines (37 loc) • 1.08 kB
TypeScript
import { flags } from '@oclif/command';
import Logs from '../logs';
/**
* LogsRetrieve class extending the superClass Logs.
*/
export default class LogsRetrieve extends Logs {
/**
* @param string
* Description of the command logs:retrieve.
*/
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: {
id: flags.IOptionFlag<string>;
help: import("@oclif/parser/lib/flags").IBooleanFlag<void>;
tail: import("@oclif/parser/lib/flags").IBooleanFlag<boolean>;
dump: import("@oclif/parser/lib/flags").IBooleanFlag<boolean>;
filters: flags.IOptionFlag<string[]>;
'api-key': flags.IOptionFlag<string>;
environment: flags.IOptionFlag<string>;
};
/**
* @param string[]
* Some examples of the logs retrieve use for help.
*/
static examples: string[];
run(): Promise<void>;
}