UNPKG

@minto-ai/xunfei-tts

Version:

借助“讯飞在线语音合成API”实现浏览器端“文本转语音

11 lines (10 loc) 294 B
interface 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 };