UNPKG
mt-mappersmith
Version:
latest (0.0.4)
0.0.4
0.0.3
0.0.2
It is a lightweight rest client for node.js and the browser
github.com/tulios/mappersmith
mt-mappersmith
/
dist
/
gateway
/
mock.d.ts
12 lines
(11 loc)
•
244 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
import
{
Gateway
}
from
'./gateway'
;
export
declare
class
Mock
extends
Gateway
{
get
():
void
;
head
():
void
;
post
():
void
;
put
():
void
;
patch
():
void
;
delete
():
void
;
callMock
():
Promise
<
void
>; }
export
default
Mock
;