16583: Add "Intermediate" to collection type filters
[arvados-workbench2.git] / src / models / runtime-status.ts
1 // Copyright (C) The Arvados Authors. All rights reserved.
2 //
3 // SPDX-License-Identifier: AGPL-3.0
4
5 export interface RuntimeStatus {
6     error?: string;
7     warning?: string;
8     activity?: string;
9     errorDetail?: string;
10     warningDetail?: string;
11 }