UNPKG

onesky-api-wrapper

Version:
11 lines (10 loc) 350 B
import { HttpHelper } from '../../http/index.js'; export class QuotationeApi { constructor(config) { this._http = new HttpHelper(config); } show(options) { const url = `projects/${options.projectId}/quotations`; return this._http.get(url, new URLSearchParams(Object.assign({}, options.params))); } }