UNPKG

@mt-utils/xunfei-tts

Version:

讯飞TTS 文本转语音

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 };