refactor: improve type annotations in services and config
Some checks failed
CI / Get Changed Files (pull_request) Successful in 6s
CI / prettier (pull_request) Successful in 23s
CI / Checkstyle Main (pull_request) Successful in 31s
CI / eslint (pull_request) Successful in 1m30s
CI / test-build (pull_request) Failing after 1m43s

This commit is contained in:
Jan K9f 2025-04-02 16:15:31 +02:00
commit d3b7e7d5e7
Signed by: jank
GPG key ID: B9F475106B20F144
3 changed files with 7 additions and 5 deletions

View file

@ -8,9 +8,10 @@ import { provideAnimationsAsync } from '@angular/platform-browser/animations/asy
import { OAuthStorage, provideOAuthClient } from 'angular-oauth2-oidc';
import { httpInterceptor } from './shared/interceptor/http.interceptor';
/* Example of a custom storage factory - not used in the current implementation
function storageFactory() {
return new (class implements OAuthStorage {
private data: { [key: string]: string } = {};
private data: Record<string, string> = {};
getItem(key: string): string | null {
return this.data[key];
@ -25,6 +26,7 @@ function storageFactory() {
}
})();
}
*/
export const appConfig: ApplicationConfig = {
providers: [