[cleanup] Adjust type to match abstraction (#643)

This commit is contained in:
Addison Beck 2022-01-28 08:18:39 -05:00 committed by GitHub
parent 6c61f53d8b
commit e372bf242b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -126,7 +126,7 @@ export class EnvironmentService implements EnvironmentServiceAbstraction {
this.keyConnectorUrl = urls.keyConnector;
}
async setUrls(urls: Urls): Promise<any> {
async setUrls(urls: Urls): Promise<Urls> {
urls.base = this.formatUrl(urls.base);
urls.webVault = this.formatUrl(urls.webVault);
urls.api = this.formatUrl(urls.api);