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

AssignmentValidatorEvents => Fix param name

parent 1ed34ef2
No related branches found
No related tags found
No related merge requests found
interface AssignmentValidatorEvents {
step: (name: string, message: string) => void;
subStep: (name: string, message: string) => void;
endStep: (subStepName: string, message: string, error: boolean) => void;
endStep: (stepName: string, message: string, error: boolean) => void;
endSubStep: (subStepName: string, message: string, error: boolean) => void;
logs: (log: string, error: boolean, displayable: boolean) => void;
finished: (success: boolean, exitCode: number) => void;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment