import { INodeParams, INodeCredential } from '../src/Interface' class ElevenLabsApi implements INodeCredential { label: string name: string version: number description: string inputs: INodeParams[] constructor() { this.label = 'Eleven Labs API' this.name = 'elevenLabsApi' this.version = 1.0 this.description = 'Sign up for a Eleven Labs account and create an API Key.' this.inputs = [ { label: 'Eleven Labs API Key', name: 'elevenLabsApiKey', type: 'password' } ] } } module.exports = { credClass: ElevenLabsApi }