We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 04ed301 commit f70254dCopy full SHA for f70254d
packages/angular_devkit/benchmark/src/main.ts
@@ -8,6 +8,7 @@
8
*/
9
10
import { logging, tags, terminal } from '@angular-devkit/core';
11
+import { ProcessOutput } from '@angular-devkit/core/node';
12
import { appendFileSync, writeFileSync } from 'fs';
13
import * as minimist from 'minimist';
14
import { filter, map, toArray } from 'rxjs/operators';
@@ -19,8 +20,8 @@ import { runBenchmark } from '../src/run-benchmark';
19
20
21
export interface MainOptions {
22
args: string[];
- stdout?: { write(buffer: string | Buffer): boolean };
23
- stderr?: { write(buffer: string | Buffer): boolean };
+ stdout?: ProcessOutput;
24
+ stderr?: ProcessOutput;
25
}
26
27
export async function main({
0 commit comments