UNPKG

@esm-js/jira.js

Version:

A comprehensive JavaScript/TypeScript library designed for both Node.JS and browsers, facilitating seamless interaction with the Atlassian Jira API.

21 lines (19 loc) 731 B
import { BaseClient } from '../../clients/baseClient'; import { Customer } from '../customer'; import { Info } from '../info'; import { Insight } from '../insight'; import { KnowledgeBase } from '../knowledgeBase'; import { Organization } from '../organization'; import { Request } from '../request'; import { RequestType } from '../requestType'; import { ServiceDesk } from '../serviceDesk'; export class ServiceDeskClient extends BaseClient { customer = new Customer(this); info = new Info(this); insights = new Insight(this); knowledgeBase = new KnowledgeBase(this); organization = new Organization(this); request = new Request(this); requestType = new RequestType(this); serviceDesk = new ServiceDesk(this); }