Skip to content
Snippets Groups Projects
Commit 610af7f5 authored by michael.minelli's avatar michael.minelli
Browse files

Add ExerciceRunningEvents => Describe events of a EventEmitter

parent 795a7699
No related branches found
No related tags found
No related merge requests found
interface ExerciceRunningEvents {
step: (name: string, message: string) => void;
endStep: (stepName: string, message: string, error: boolean) => void;
logs: (log: string, error: boolean, displayable: boolean) => void;
finished: (success: boolean, exitCode: number) => void;
}
export default ExerciceRunningEvents;
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment