UNPKG

ebay-api

Version:

eBay API for Node and Browser

7 lines (6 loc) 252 B
export type EventCallback = (...args: any) => void; export declare let createNanoEvents: () => { events: Record<string, EventCallback[]>; emit(event: string, ...args: any[]): void; on(event: string, cb: EventCallback): () => void; };