UNPKG

@swell/cli

Version:

Swell's command line interface/utility

35 lines (34 loc) 1.8 kB
import { InspectResourceCommand } from '../../inspect-resource-command.js'; export default class WorkflowRuns extends InspectResourceCommand { static summary: string; static description: string; static args: { identifier: import("@oclif/core/lib/interfaces/parser.js").Arg<string | undefined, Record<string, unknown>>; }; static flags: { limit: import("@oclif/core/lib/interfaces/parser.js").OptionFlag<number, import("@oclif/core/lib/interfaces/parser.js").CustomOptions>; status: import("@oclif/core/lib/interfaces/parser.js").OptionFlag<string | undefined, import("@oclif/core/lib/interfaces/parser.js").CustomOptions>; workflow: import("@oclif/core/lib/interfaces/parser.js").OptionFlag<string | undefined, import("@oclif/core/lib/interfaces/parser.js").CustomOptions>; app: import("@oclif/core/lib/interfaces/parser.js").OptionFlag<string | undefined, import("@oclif/core/lib/interfaces/parser.js").CustomOptions>; live: import("@oclif/core/lib/interfaces/parser.js").BooleanFlag<boolean>; json: import("@oclif/core/lib/interfaces/parser.js").BooleanFlag<boolean>; yes: import("@oclif/core/lib/interfaces/parser.js").BooleanFlag<boolean>; }; static examples: string[]; protected resourceLabel: string; protected resourceLabelSingular: string; protected adminPath: string; protected commandName: string; private detailContext?; run(): Promise<void>; protected hints(): string[]; private showRecentRunList; private showRunDetail; private getRunDetail; private resolveWorkflowRunScope; private getRunDetailForApp; private getRecentRunsForScopedApp; private getRecentRunsForInstalledApps; private resolveRunListTargets; private getRunListForApp; }