build.d.ts 484 B

1234567
  1. import { CommandInstanceInfo, CommandLineInputs, CommandLineOptions, CommandMetadata, CommandPreRun } from '../definitions';
  2. import { Command } from '../lib/command';
  3. export declare class BuildCommand extends Command implements CommandPreRun {
  4. getMetadata(): Promise<CommandMetadata>;
  5. preRun(inputs: CommandLineInputs, options: CommandLineOptions): Promise<void>;
  6. run(inputs: CommandLineInputs, options: CommandLineOptions, runinfo: CommandInstanceInfo): Promise<void>;
  7. }