UNPKG

@nextrope/xrpl

Version:

A TypeScript/JavaScript API for interacting with the XRP Ledger in Node.js and the browser

11 lines 299 B
import type { BaseRequest, BaseResponse } from './baseMethod'; export interface PingRequest extends BaseRequest { command: 'ping'; } export interface PingResponse extends BaseResponse { result: { role?: string; unlimited?: boolean; }; } //# sourceMappingURL=ping.d.ts.map