UNPKG

fedapay-cli

Version:
39 lines (38 loc) 1.13 kB
import { flags } from '@oclif/command'; import logs from '../logs'; /** * LogsList command class. */ export default class LogsList extends logs { /** * @param string * Description of logs:list command. */ 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: { limit: import("@oclif/parser/lib/flags").IOptionFlag<number>; filter: 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:list use for help. */ static examples: string[]; run(): Promise<void>; }