Fix rebase-induced type error

This commit is contained in:
Jason Reed
2020-02-06 09:29:57 -05:00
parent ed801a7f49
commit 96174005c9

View File

@@ -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());
}