@hellotext/hellotext
Version:
Hellotext JavaScript Client
25 lines (19 loc) • 420 B
JavaScript
import BusinessesAPI from './businesses'
import EventsAPI from './events'
import FormsAPI from './forms'
import WebchatsAPI from './webchats'
export default class API {
static get businesses() {
return BusinessesAPI
}
static get events() {
return EventsAPI
}
static get forms() {
return FormsAPI
}
static get webchats() {
return WebchatsAPI
}
}
export { Response } from './response'