UNPKG

@vanakaru/ekilex-api-client

Version:

A node api client for the Ekilex API

18 lines 505 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.Endpoints = void 0; const http_client_1 = require("../http/http-client"); class Endpoints { constructor(httpClient) { this.httpClient = httpClient; } getAll() { const request = { method: http_client_1.Method.Get, path: 'endpoints', }; return this.httpClient.request(request); } } exports.Endpoints = Endpoints; //# sourceMappingURL=endpoints.js.map