Skip to content

Commit 9be574c

Browse files
Stefan SchubertStefan Schubert
authored andcommitted
add missing assignments
1 parent 250dad1 commit 9be574c

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/mustache/configuration.mustache

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ export class Configuration {
2323
username?: string;
2424
password?: string;
2525
accessToken?: string | (() => string);
26+
errorHandler?: (err: any) => Observable<never>;
2627
basePath?: string;
2728
withCredentials?: boolean;
2829

@@ -31,6 +32,7 @@ export class Configuration {
3132
this.username = configurationParameters.username;
3233
this.password = configurationParameters.password;
3334
this.accessToken = configurationParameters.accessToken;
35+
this.errorHandler = configurationParameters.errorHandler;
3436
this.basePath = configurationParameters.basePath;
3537
this.withCredentials = configurationParameters.withCredentials;
3638
}

0 commit comments

Comments
 (0)