We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 627f85d commit 16656d7Copy full SHA for 16656d7
src/Pages/ResourceBrowser/index.ts
@@ -16,3 +16,4 @@
16
17
export * from './ResourceBrowser.Types'
18
export * from './Helper'
19
+export * from './types'
src/Pages/ResourceBrowser/types.ts
@@ -0,0 +1,11 @@
1
+export enum ClusterFiltersType {
2
+ ALL_CLUSTERS = 'all',
3
+ HEALTHY = 'healthy',
4
+ UNHEALTHY = 'unhealthy',
5
+}
6
+
7
+export enum ClusterStatusType {
8
9
10
+ CONNECTION_FAILED = 'connection failed',
11
0 commit comments