UNPKG

fedapay-cli

Version:
38 lines (37 loc) 1.02 kB
import { flags } from '@oclif/command'; import Command from '../base'; /** * Logs class extending Command Class */ export default class Logs extends Command { /** * @param string * Description of the command Logs. */ static description: string; /** * @param string * Custom usage string for help * This overrides the default usage */ static usage: string; /** * @param string[] * Examples to add to help. * Each can be multiline. */ static examples: string[]; /** * @param object * Declaration of the command flags. */ static flags: { tail: import("@oclif/parser/lib/flags").IBooleanFlag<boolean>; dump: import("@oclif/parser/lib/flags").IBooleanFlag<boolean>; filters: flags.IOptionFlag<string[]>; help: import("@oclif/parser/lib/flags").IBooleanFlag<void>; 'api-key': flags.IOptionFlag<string>; environment: flags.IOptionFlag<string>; }; run(): Promise<void>; }