This commit is contained in:
Jason Reed 2020-02-06 09:29:57 -05:00
Родитель ed801a7f49
Коммит 96174005c9
1 изменённых файлов: 4 добавлений и 0 удалений

Просмотреть файл

@ -85,6 +85,10 @@ export class CompletedQuery implements QueryWithResults {
return this.config.format;
}
get didRunSuccessfully(): boolean {
return this.result.resultType === messages.QueryResultType.SUCCESS;
}
toString(): string {
return this.interpolate(this.getLabel());
}