-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathconfig.d.ts
78 lines (78 loc) · 1.8 KB
/
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
export interface Config {
app?: {
/**
* Build information.
* Control the display of the build information in the Homepage UI.
*/
/**
* Version number to display
* @visibility frontend
*/
buildVersion?: string | number;
/**
* Show build number. False by default. Has to be set explicitly as true to enable it.
* @visibility frontend
*/
showBuildVersion?: boolean;
/**
* Show developer hub version. String value. Displays currently deployed version.
* @visibility frontend
*/
developerHubVersion?: string;
/**
* Documentation url. String value.
* @visibility frontend
*/
docUrl: string;
};
auth?: {
/**
* Frontend root URL
* @visibility frontend
*/
enableAuthProviders: string[];
};
walkThrough?: {
/**
* Hyperlink of the external website to view all the Walk-through
* @visibility frontend
*/
viewAllLink: string;
/**
* Array of Walk-through which will be visible on the home page
* @visibility frontend
*/
items: {
/**
* Title for the Walk-through
* @visibility frontend
*/
title: string;
/**
* Array of tags for the Walk-through
* @visibility frontend
*/
tags: string[];
/**
* Description text for the Walk-through
* @visibility frontend
*/
text: string;
/**
* Hyperlink of external website for the Walk-through
* @visibility frontend
*/
link: string;
}[];
};
/**
* Control plane link for the TIBCO® Developer Hub
* @visibility frontend
*/
cpLink?: string;
/**
* Custom version name for the TIBCO® Developer Hub
* @visibility frontend
*/
tibcoDeveloperHubCustomAppVersion?: string;
}