UNPKG
@jsstudio/development-api-interceptor
Version:
latest (1.0.1)
1.0.1
1.0.0
development-api-interceptor
github.com/srijanone/development-api-interceptor
@jsstudio/development-api-interceptor
/
lib
/
cjs
/
interfaces
/
api.d.ts
12 lines
(11 loc)
•
196 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
export
interface
Request
{
body
?:
object
;
url
:
string
;
method
:
string
; }
export
interface
Response
{
success
:
boolean
;
message
:
string
;
data
:
object
;
status
:
number
; }