UNPKG

onesky-api-wrapper

Version:
11 lines (10 loc) 266 B
import { HttpHelper } from '../../http/index.js'; export class ProjectTypeApi { constructor(config) { this._http = new HttpHelper(config); } listTypes() { const url = 'project-types'; return this._http.get(url); } }