n8n-nodes-elevenlabs-langfix
Version:
Complete implementation of ElevenLabs AI voice generation into n8n workflows.
26 lines (25 loc) • 1.16 kB
TypeScript
import type { INodeType, INodeTypeDescription } from 'n8n-workflow';
export declare class ElevenLabs implements INodeType {
description: INodeTypeDescription;
methods: {
listSearch: {
listVoices(this: import("n8n-workflow").ILoadOptionsFunctions): Promise<import("n8n-workflow").INodeListSearchResult>;
};
loadOptions: {
listVoiceGenders(this: import("n8n-workflow").ILoadOptionsFunctions): Promise<{
name: string;
value: string;
}[]>;
listVoiceAges(this: import("n8n-workflow").ILoadOptionsFunctions): Promise<{
name: string;
value: string;
}[]>;
listVoiceAccents(this: import("n8n-workflow").ILoadOptionsFunctions): Promise<{
name: string;
value: string;
}[]>;
listModels(this: import("n8n-workflow").ILoadOptionsFunctions): Promise<import("n8n-workflow").INodePropertyOptions[]>;
listVoices(this: import("n8n-workflow").ILoadOptionsFunctions): Promise<import("n8n-workflow").INodePropertyOptions[]>;
};
};
}