UNPKG

node-zendesk

Version:

A trusted Zendesk API client library for Node.js and the browser, lovingly maintained for over 10 years.

32 lines (31 loc) 1.4 kB
/** * Manages help center for the Zendesk client. * * This class provides access to various help center-related functionality within the Zendesk API. */ export class ZendeskClientHelpcenter { /** * @param {import('../../index.js').ZendeskClient} client - The Zendesk client instance. */ constructor(client: import("../../index.js").ZendeskClient); client: import("../../index.js").ZendeskClient; /** * @template T * @param {new (options: import('../../index.js').ZendeskClientOptions) => T} className - The class to instantiate. * @returns {T} An instance of the provided class. * @private */ private _instantiate; get accesspolicies(): import("./accesspolicies").AccessPolicies; get articleattachments(): import("./articleattachments").ArticleAttachments; get articlecomments(): import("./articlecomments").ArticleComments; get articlelabels(): import("./articlelabels").ArticleLabels; get articles(): import("./articles").Articles; get categories(): import("./categories").Categories; get search(): import("./search").Search; get sections(): import("./sections").Sections; get subscriptions(): import("./subscriptions").Subscriptions; get translations(): import("./translations").Translations; get usersegments(): import("./usersegments").UserSegments; get votes(): import("./votes").Votes; }