UNPKG

@hippocampus-web3/runebond-client

Version:

TypeScript client for RUNEBond API

20 lines (19 loc) 766 B
import type { ApiResponse_MirrorFeedDto_ } from '../models/ApiResponse_MirrorFeedDto_'; import type { ApiResponse_NodeListingDto_Array_ } from '../models/ApiResponse_NodeListingDto_Array_'; import type { CancelablePromise } from '../core/CancelablePromise'; export declare class NodesService { /** * @param page * @param limit * @param address * @returns ApiResponse_NodeListingDto_Array_ Ok * @throws ApiError */ static getNodes(page?: number, limit?: number, address?: string): CancelablePromise<ApiResponse_NodeListingDto_Array_>; /** * @param node * @returns ApiResponse_MirrorFeedDto_ Ok * @throws ApiError */ static getMirrorFeed(node: string): CancelablePromise<ApiResponse_MirrorFeedDto_>; }