8 lines
327 B
TypeScript
8 lines
327 B
TypeScript
|
|
import { HttpInterceptorFn } from '@angular/common/http';
|
||
|
|
/**
|
||
|
|
* Attaches admin session/token headers only to admin API requests. Scoped to
|
||
|
|
* admin-gated paths so it never touches customer requests and never reads
|
||
|
|
* the customer AuthService's session.
|
||
|
|
*/
|
||
|
|
export declare const adminAuthHeadersInterceptor: HttpInterceptorFn;
|