n8n-nodes-elevenlabs-langfix
Version:
Complete implementation of ElevenLabs AI voice generation into n8n workflows.
18 lines (17 loc) • 621 B
TypeScript
import type { ILoadOptionsFunctions, INodePropertyOptions } from 'n8n-workflow';
export declare const loadOptions: {
listVoiceGenders(this: ILoadOptionsFunctions): Promise<{
name: string;
value: string;
}[]>;
listVoiceAges(this: ILoadOptionsFunctions): Promise<{
name: string;
value: string;
}[]>;
listVoiceAccents(this: ILoadOptionsFunctions): Promise<{
name: string;
value: string;
}[]>;
listModels(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>;
listVoices(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>;
};