UNPKG

ng-programmatic

Version:

Programmatic interface for configuring and running Angular CLI commands.

9 lines (8 loc) 437 B
import { NgBuild, NgLint, NgTest, NgServe } from "../commands"; import { INgBuildArguments, INgLintArguments, INgServeArguments, INgTestArguments } from ".."; export declare class Ng { static Build(args?: Partial<INgBuildArguments>): NgBuild; static Serve(args?: Partial<INgServeArguments>): NgServe; static Lint(args?: Partial<INgLintArguments>): NgLint; static Test(args?: Partial<INgTestArguments>): NgTest; }