@yolkai/nx-workspace
Version:
10 lines (9 loc) • 369 B
TypeScript
export interface ReporterArgs {
target?: string;
configuration?: string;
onlyFailed?: boolean;
}
export declare class DefaultReporter {
beforeRun(affectedProjectNames: string[], affectedArgs: ReporterArgs, taskOverrides: any): void;
printResults(affectedArgs: ReporterArgs, failedProjectNames: string[], startedWithFailedProjects: boolean): void;
}