@swell/cli
Version:
Swell's command line interface/utility
20 lines (19 loc) • 586 B
TypeScript
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 description: string;
static examples: string[];
static flags: any;
static summary: string;
static delayOrientation: boolean;
static orientation: {
env: string;
};
resolvePushPaths(file: string): {
filePath: string;
relativePath: string;
};
run(): Promise<void>;
}