n8n-nodes-elevenlabs-enhanced
Version:
Complete implementation of ElevenLabs AI voice generation into n8n workflows.
16 lines (15 loc) • 755 B
TypeScript
import { INodeType, INodeTypeDescription } from 'n8n-workflow';
export declare class ElevenLabs implements INodeType {
description: INodeTypeDescription;
methods: {
loadOptions: {
listVoiceGenders(this: import("n8n-workflow").ILoadOptionsFunctions): Promise<any>;
listVoiceAges(this: import("n8n-workflow").ILoadOptionsFunctions): Promise<any>;
listVoiceAccents(this: import("n8n-workflow").ILoadOptionsFunctions): Promise<any>;
listModels(this: import("n8n-workflow").ILoadOptionsFunctions): Promise<any>;
};
listSearch: {
listVoices(this: import("n8n-workflow").ILoadOptionsFunctions): Promise<import("n8n-workflow").INodeListSearchResult>;
};
};
}