We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 250dad1 commit 9be574cCopy full SHA for 9be574c
src/mustache/configuration.mustache
@@ -23,6 +23,7 @@ export class Configuration {
23
username?: string;
24
password?: string;
25
accessToken?: string | (() => string);
26
+ errorHandler?: (err: any) => Observable<never>;
27
basePath?: string;
28
withCredentials?: boolean;
29
@@ -31,6 +32,7 @@ export class Configuration {
31
32
this.username = configurationParameters.username;
33
this.password = configurationParameters.password;
34
this.accessToken = configurationParameters.accessToken;
35
+ this.errorHandler = configurationParameters.errorHandler;
36
this.basePath = configurationParameters.basePath;
37
this.withCredentials = configurationParameters.withCredentials;
38
}
0 commit comments