UNPKG

@jokio/sdk

Version:

pure js/ts sdk for building decentralised localfirst web apps. Provides tts ai model integrations, realtime p2p communication & crypto encryptions.

12 lines (11 loc) 340 B
type Config = { voicevoxUrl: string; }; export declare class VoicevoxTtsService { private config; constructor(config: Config); getAudioBuffer(text: string, voice: string): Promise<ArrayBuffer | null>; getAudio(text: string, voice: string): Promise<HTMLAudioElement | null>; getVoices(): Promise<any[]>; } export {};