/** * Options that are used within AuthInterceptor */ export declare class AuthInterceptorOptions { /** * Indication whether treat unauthorized (401) as forbidden (403) http error for 'authorized' */ treatUnauthorizedAsForbidden: boolean; /** * Creates instance of AuthInterceptorOptions * @param treatForbiddenAndUnauthorizedAsSame - Indication whether treat forbidden (403) and unauthorized (401) as same error */ constructor(treatForbiddenAndUnauthorizedAsSame?: boolean); } //# sourceMappingURL=authInterceptor.options.d.ts.map