ng-programmatic
Version:
Programmatic interface for configuring and running Angular CLI commands.
7 lines (6 loc) • 342 B
TypeScript
import { NgCommand } from "../../ng/ng-command";
import { INgRunner } from "../../utils/runner/ng-runner.interface";
import { INgServeArguments } from "./arguments.interface";
export declare class NgServe extends NgCommand<INgServeArguments> {
constructor(runner: INgRunner<INgServeArguments>, args?: Partial<INgServeArguments>);
}