UNPKG
@wizni/quiver
Version:
latest (1.0.0)
1.0.0
Quiver- Angular frontend development tools.
github.com/wizspark/quiver
wizspark/quiver
@wizni/quiver
/
typings
/
http
/
interceptors
/
http-interceptor-mapping.interface.d.ts
10 lines
(9 loc)
•
278 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
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
[]; }