UNPKG

node-zendesk

Version:

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

7 lines (6 loc) 213 B
export class CustomEventTarget { listeners: Map<any, any>; addEventListener(type: any, callback: any): void; removeEventListener(type: any, callback: any): void; dispatchEvent(event: any): void; }