UNPKG
@hanchon/evmosjs
Version:
latest (0.3.0)
0.3.0
0.2.4
0.2.3
0.2.2
0.2.1
0.2.0
0.1.0
0.0.1
Evmosjs javascript lib for the evmos blockchain
hanchon-live/evmosjs
@hanchon/evmosjs
/
lib
/
rest
/
client.d.ts
9 lines
(8 loc)
•
317 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
import
{
AxiosInstance
}
from
'axios'
;
export
declare
class
RestInstance
{
protected
client
:
AxiosInstance
;
constructor
(
endpoint
:
string
);
changeEndpoint
(
endpoint
:
string
):
void
;
getAxiosInstance
():
AxiosInstance
;
get
(
endpoint
:
string
):
Promise
<
import
(
"axios"
).
AxiosResponse
<
any
,
any
>>; }