node-zendesk
Version:
A trusted Zendesk API client library for Node.js and the browser, lovingly maintained for over 10 years.
11 lines (10 loc) • 392 B
TypeScript
export class ArticleLabels extends Client {
constructor(options: any);
jsonAPINames: string[];
list(): Promise<NodeModule>;
listByArticle(articleID: any): Promise<NodeModule>;
show(labelID: any): Promise<NodeModule>;
create(articleID: any, label: any): Promise<NodeModule>;
delete(articleID: any, labelID: any): Promise<any>;
}
import { Client } from "../client";