UNPKG

yaas-sdk

Version:
11 lines (10 loc) 278 B
export class YAAS_API { constructor(client, tenant, baseURL) { this.client = client; this.tenant = tenant; this.baseURL = baseURL; } ws(path, method, query, body) { return this.client.ws(this.baseURL + '/' + this.tenant + path, method, query, body); } }