UNPKG

@swell/cli

Version:

Swell's command line interface/utility

20 lines (19 loc) 1.1 kB
import { FrontendProjectType } from '../../../lib/apps/index.js'; import { PushAppCommand } from '../../../push-app-command.js'; export default class AppFrontendDev extends PushAppCommand { static examples: string[]; static flags: { 'no-push': import("@oclif/core/lib/interfaces/parser.js").BooleanFlag<boolean>; port: import("@oclif/core/lib/interfaces/parser.js").OptionFlag<number | undefined, import("@oclif/core/lib/interfaces/parser.js").CustomOptions>; 'storefront-id': import("@oclif/core/lib/interfaces/parser.js").OptionFlag<string | undefined, import("@oclif/core/lib/interfaces/parser.js").CustomOptions>; 'storefront-select': import("@oclif/core/lib/interfaces/parser.js").BooleanFlag<boolean>; }; static orientation: { env: string; }; static summary: string; logAppLocalUrl(storeId: string, sessionId: string): void; run(): Promise<void>; startDevServer(projectType: FrontendProjectType, port?: number): Promise<void>; updateLocalProxy(proxyUrl: string, spinner: any, storefrontId?: string): Promise<void>; }