UNPKG
sleeper-api-tsclient
Version:
latest (0.0.1)
0.0.1
Typescript client for the sleeper api
sleeper-api-tsclient
/
dist
/
http
/
isomorphic-fetch.d.ts
7 lines
(6 loc)
•
275 B
TypeScript
View Raw
1
2
3
4
5
6
7
import
{
HttpLibrary
,
RequestContext
,
ResponseContext
}
from
'./http'
;
import
{
Observable
}
from
'../rxjsStub'
;
import
"whatwg-fetch"
;
export
declare
class
IsomorphicFetchHttpLibrary
implements
HttpLibrary
{
send
(
request
:
RequestContext
):
Observable
<
ResponseContext
>; }