blockfrost-js-ratelimited
Version:
A JavaScript/TypeScript SDK for interacting with the https://blockfrost.io API
10 lines (9 loc) • 395 B
TypeScript
import { components } from './types/OpenApi';
import { ErrorType } from './types';
import { BlockFrostAPI } from './BlockFrostAPI';
import { BlockFrostIPFS } from './BlockFrostIPFS';
import { parseAsset } from './utils/index';
declare type Responses = components['schemas'];
declare type Error = ErrorType;
export { BlockFrostAPI, BlockFrostIPFS, parseAsset };
export type { Responses, Error };