-
Notifications
You must be signed in to change notification settings - Fork 30
/
index.d.ts
44 lines (44 loc) · 1.26 KB
/
index.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
declare interface Window {
SERVER_FLAGS: {
alertManagerBaseURL: string;
authDisabled: boolean;
basePath: string;
branding: string;
consoleVersion: string;
customLogoURL: string;
customProductName: string;
documentationBaseURL: string;
kubeAPIServerURL: string;
kubeAdminLogoutURL: string;
kubectlClientID: string;
loadTestFactor: number;
loginErrorURL: string;
loginSuccessURL: string;
loginURL: string;
logoutRedirect: string;
logoutURL: string;
meteringBaseURL: string;
prometheusBaseURL: string;
prometheusTenancyBaseURL: string;
requestTokenURL: string;
inactivityTimeout: number;
statuspageID: string;
GOARCH: string;
GOOS: string;
graphqlBaseURL: string;
developerCatalogCategories: string;
userSettingsLocation: string;
addPage: string; // JSON encoded configuration
consolePlugins: string[]; // Console dynamic plugins enabled on the cluster
quickStarts: string;
projectAccessClusterRoles: string;
clusters: string[];
controlPlaneTopology: string;
};
windowError?: string;
__REDUX_DEVTOOLS_EXTENSION_COMPOSE__?: Function;
store?: {}; // Redux store
pluginStore?: {}; // Console plugin store
loadPluginEntry?: Function;
Cypress?: {};
}