forked from K-Phoen/backstage-plugin-opsgenie
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.d.ts
30 lines (28 loc) · 825 Bytes
/
config.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
export interface Config {
opsgenie: {
/**
* Domain used by users to access Opsgenie web UI.
* Example: https://my-app.app.eu.opsgenie.com/
* @visibility frontend
*/
domain: string;
/**
* Path to use for requests via the proxy, defaults to /opsgenie/api
* @visibility frontend
*/
proxyPath?: string;
/**
* Configuration options used to generate analytics graphs
* @visibility frontend
*/
analytics?: {
/** @visibility frontend */
businessHours?: {
/** @visibility frontend */
start: number; // 24h format
/** @visibility frontend */
end: number; // 24h format
};
};
}
}