UNPKG

@mt-utils/xunfei-lat

Version:

讯飞LAT 语音转文本

11 lines (10 loc) 292 B
type EventCallback = { (...args: any[]): any; }; declare class EventBus<E = any> { private listeners; on(eventName: E, callback: EventCallback): void; emit<T = any>(eventName: E, data?: T): void; } declare function createEventBus<E>(): EventBus<E>; export { createEventBus };