UNPKG

@swell/cli

Version:

Swell's command line interface/utility

20 lines (19 loc) 608 B
import { PushAppCommand } from '../../push-app-command.js'; export default class AppPush extends PushAppCommand { static args: { file: import("@oclif/core/lib/interfaces/parser.js").Arg<string | undefined, Record<string, unknown>>; }; static delayOrientation: boolean; static description: string; static examples: string[]; static flags: any; static orientation: { env: string; }; static summary: string; resolvePushPaths(file: string, appPathFlag?: string): { filePath: string; relativePath: string; }; run(): Promise<void>; }