UNPKG

@yolkai/nx-tao

Version:

CLI for generating code and running commands

13 lines (12 loc) 441 B
import { experimental } from '@angular-devkit/core'; export interface RunOptions { project: string; target: string; configuration: string; help: boolean; runOptions: { [k: string]: any; }; } export declare function validateTargetAndConfiguration(workspace: experimental.workspace.Workspace, opts: RunOptions): void; export declare function run(root: string, args: string[], isVerbose: boolean): Promise<any>;