Add undefined to TaskProcessEndedDTO.exitCode (#110508)

This commit is contained in:
David Sanders
2020-11-13 01:26:02 -08:00
committed by GitHub
parent 0998e4ccbb
commit 76a8ea640e
2 changed files with 3 additions and 3 deletions

View File

@@ -113,7 +113,7 @@ export interface TaskProcessStartedDTO {
export interface TaskProcessEndedDTO {
id: string;
exitCode: number;
exitCode: number | undefined;
}