UNPKG

@wizni/quiver

Version:

Quiver- Angular frontend development tools.

10 lines (9 loc) 278 B
import { IHttpInterceptor } from './http-interceptor.interface'; /** * Interface for http interceptor mappings. * Maps the interceptor with the desired interception rule. */ export interface IHttpInterceptorMapping { interceptor: IHttpInterceptor; paths: string[]; }