serve-impl.d.ts 685 B

12345678910
  1. import { ArchitectCommand, ArchitectCommandOptions } from '../models/architect-command';
  2. import { Arguments } from '../models/interface';
  3. import { Schema as BuildCommandSchema } from './build';
  4. import { Schema as ServeCommandSchema } from './serve';
  5. export declare class ServeCommand extends ArchitectCommand<ServeCommandSchema> {
  6. readonly target = "serve";
  7. validate(_options: ArchitectCommandOptions & Arguments): boolean;
  8. run(options: ArchitectCommandOptions & Arguments): Promise<number>;
  9. reportAnalytics(paths: string[], options: BuildCommandSchema & Arguments, dimensions?: (boolean | number | string)[], metrics?: (boolean | number | string)[]): Promise<void>;
  10. }