UNPKG
@apexfusionfoundation/blockfrost-js
Version:
latest (5.4.3)
5.4.3
5.4.2
5.4.1
5.4.0
A JavaScript/TypeScript SDK for interacting with the https://blockfrost.io API
@apexfusionfoundation/blockfrost-js
/
lib
/
endpoints
/
api
/
root
/
index.d.ts
12 lines
(11 loc)
•
275 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
import
{
BlockFrostAPI
}
from
'../../../index'
;
/** * Obtains backend version number. * *
@returns
Backend version in a format `{ url: string; version: string }` * */
export
declare
function
root
(
this
:
BlockFrostAPI
):
Promise
<{
url
:
string
;
version
:
string
; }>;