@boost/core
Version:
Robust pipeline for creating dev tools that separate logic into routines and tasks.
15 lines • 478 B
TypeScript
import Reporter from '../Reporter';
import Routine from '../Routine';
export default class CIReporter extends Reporter {
routineCount: number;
taskCount: number;
blueprint(): {};
bootstrap(): void;
handleRoutine: (routine: Routine<any, any, {}>) => void;
handleRoutineSkip: () => void;
handleRoutinePass: () => void;
handleRoutineFail: () => void;
handleTask: () => void;
handleStop: () => void;
}
//# sourceMappingURL=CIReporter.d.ts.map