@yolkai/nx-workspace
Version:
12 lines (11 loc) • 367 B
TypeScript
export declare class WorkspaceResults {
private command;
startedWithFailedProjects: boolean;
private commandResults;
readonly failedProjects: string[];
readonly hasFailure: boolean;
constructor(command: string);
getResult(projectName: string): boolean;
saveResults(): void;
setResult(projectName: string, result: boolean): void;
}