UNPKG
kakapo
Version:
latest (4.0.6)
4.0.6
4.0.5
4.0.4
4.0.3
4.0.1
3.3.6
3.3.5
3.3.4
3.3.3
3.3.2
3.3.1
3.2.1
3.1.1
3.0.2
3.0.1
2.0.1
1.0.4
1.0.3
1.0.2
1.0.1
0.2.4
0.2.3
0.2.2
0.2.1
0.2.0
0.1.4
0.1.3
0.1.2
0.1.1
0.0.1
0.0.0
0.0.0-semantic-release
Next generation mocking framework in Javascript
github.com/devlucky/Kakapo.js
devlucky/Kakapo.js
kakapo
/
dist
/
interceptors
/
index.d.ts
10 lines
(9 loc)
•
303 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
import
*
as
xhrInterceptor
from
'./xhrInterceptor'
;
import
*
as
fetchInterceptor
from
'./fetchInterceptor'
;
export
interface
Interceptors
{
XMLHttpRequest
:
typeof
xhrInterceptor;
fetch
:
typeof
fetchInterceptor;
http
?:
any
;
https
?:
any
; }
export
declare
const
interceptors
:
Interceptors
;