(...args: string[])
| 376 | } |
| 377 | |
| 378 | export function silentNg(...args: string[]) { |
| 379 | return _exec({ silent: true }, 'ng', args); |
| 380 | } |
| 381 | |
| 382 | export function silentNpm(...args: string[]): Promise<ProcessOutput>; |
| 383 | export function silentNpm(args: string[], options?: { cwd?: string }): Promise<ProcessOutput>; |
no test coverage detected