UNPKG

@availity/api-axios

Version:

Wrappers for axios designed to work with the Availity portal

16 lines (13 loc) 299 B
import AvApi from './api'; export default class AvProxyApi extends AvApi { constructor(config) { if (!config?.tenant) { throw new Error('[config.tenant] must be defined'); } super({ path: `api/v1/proxy/${config.tenant}`, version: '', ...config, }); } }