UNPKG
@hippocampus-web3/blockfrost-js
Version:
latest (6.0.4)
6.0.4
6.0.3
6.0.2
6.0.1
6.0.0
A JavaScript/TypeScript SDK for interacting with the https://blockfrost.io API
@hippocampus-web3/blockfrost-js
/
lib
/
src
/
utils
/
got.d.ts
5 lines
(4 loc)
•
276 B
TypeScript
View Raw
1
2
3
4
5
import
{
KyInstance
}
from
'ky'
;
import
Bottleneck
from
'bottleneck'
;
import
{
ValidatedOptions
}
from
'../types'
;
export
declare
const
getInstance
:
(
apiUrl
:
string
,
options
:
ValidatedOptions
,
userAgent
:
string
|
undefined
,
rateLimiter
:
Bottleneck
|
undefined
) =>
KyInstance
;