UNPKG

sofya.transcription

Version:

a JavaScript library that provides a robust and flexible solution for real-time audio transcription. It is designed to transcribe audio streams and can be easily integrated into web applications.

8 lines 261 B
type EventCallback = (data?: any) => void; export default class EventEmitter { private events; on(event: string, callback: EventCallback): void; protected emit(event: string, data?: any): void; } export {}; //# sourceMappingURL=EventEmitter.d.ts.map