UNPKG

coingecko-openapi-client

Version:
23 lines (22 loc) 509 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.PingService = void 0; class PingService { constructor(httpRequest) { this.httpRequest = httpRequest; } /** * Check API server status * Check API server status * * @returns any Status OK * @throws ApiError */ getPing() { return this.httpRequest.request({ method: 'GET', url: '/ping', }); } } exports.PingService = PingService;