n8n-nodes-salutespeech
Version:
User-friendly SaluteSpeech (Sber) community node
18 lines (17 loc) • 451 B
TypeScript
import { AxiosInstance } from 'axios';
interface TextSynthesizeArgs {
text: string;
voiceId: string;
format: string;
freq: string;
accessToken?: string;
}
export interface TextSynthesizeResponse {
buffer: Buffer;
mime: string;
fileName: string;
size: number;
headers: Record<string, any>;
}
export declare function post_text_synthesize(client: AxiosInstance, args: TextSynthesizeArgs): Promise<any>;
export {};