UNPKG
@ng-apimock/cypress-plugin
Version:
latest (3.0.0)
3.0.0
2.2.1
2.2.0
2.1.0
2.0.0
1.1.0
1.0.2
1.0.1
1.0.0
Cypress plugin for ng-apimock
github.com/ng-apimock/cypress-plugin
ng-apimock/cypress-plugin
@ng-apimock/cypress-plugin
/
dist
/
request.object.d.ts
12 lines
(11 loc)
•
213 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
export
interface
RequestHeaders
{ [
key
:
string
]:
any
; }
export
interface
RequestObject
{
agent
?:
any
;
url
:
string
;
method
:
string
;
log
:
boolean
;
headers
?:
RequestHeaders
;
body
?:
any
; }