UNPKG

685 BTypeScriptView Raw
1import { ArchitectCommand, ArchitectCommandOptions } from '../models/architect-command';
2import { Arguments } from '../models/interface';
3import { Schema as BuildCommandSchema } from './build';
4import { Schema as ServeCommandSchema } from './serve';
5export 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}