build.d.ts 592 B

123456789
  1. import { CommandInstanceInfo, CommandLineInputs, CommandLineOptions, CommandMetadata, CommandPreRun } from '../../definitions';
  2. import { CapacitorCommand } from './base';
  3. export declare class BuildCommand extends CapacitorCommand implements CommandPreRun {
  4. getMetadata(): Promise<CommandMetadata>;
  5. preRun(inputs: CommandLineInputs, options: CommandLineOptions, runinfo: CommandInstanceInfo): Promise<void>;
  6. run(inputs: CommandLineInputs, options: CommandLineOptions): Promise<void>;
  7. protected getContinueMessage(platform: string): string;
  8. private runCapacitorBuildHook;
  9. }