serve.d.ts 519 B

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