aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-web/src/main/js/api/components.ts
diff options
context:
space:
mode:
Diffstat (limited to 'server/sonar-web/src/main/js/api/components.ts')
-rw-r--r--server/sonar-web/src/main/js/api/components.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/server/sonar-web/src/main/js/api/components.ts b/server/sonar-web/src/main/js/api/components.ts
index 5cd527da6ad..168f41d4a32 100644
--- a/server/sonar-web/src/main/js/api/components.ts
+++ b/server/sonar-web/src/main/js/api/components.ts
@@ -157,7 +157,7 @@ export function bulkChangeKey(
return postJSON(url, data);
}
-export interface ISuggestionsResponse {
+export interface SuggestionsResponse {
organizations: Array<{ key: string; name: string }>;
projects: Array<{ key: string; name: string }>;
results: Array<{
@@ -180,7 +180,7 @@ export function getSuggestions(
query?: string,
recentlyBrowsed?: string[],
more?: string
-): Promise<ISuggestionsResponse> {
+): Promise<SuggestionsResponse> {
const data: RequestData = {};
if (query) {
data.s = query;