UNPKG
anvisa-med
Version:
latest (0.0.3)
0.0.3
0.0.2
0.0.1
Biblioteca para acessar medicamentos na ANVISA
anvisa-med
/
dist
/
http
/
httpModule.d.ts
11 lines
(10 loc)
•
274 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
export
type
HttpOptions
= {
signal
?:
AbortSignal
;
useCache
?:
boolean
; };
export
declare
class
HttpModule
{
private
readonly
axiosInstance;
private
readonly
cacheInterceptor;
constructor
(
); get<T =
any
>(
url
:
string
,
opts
?:
HttpOptions
):
Promise
<T>; }