import { INodeParams, INodeCredential } from '../src/Interface' class ExaSearchApi implements INodeCredential { label: string name: string version: number description: string inputs: INodeParams[] constructor() { this.label = 'Exa Search API' this.name = 'exaSearchApi' this.version = 1.0 this.description = 'Refer to official guide on how to get an API Key from Exa' this.inputs = [ { label: 'ExaSearch Api Key', name: 'exaSearchApiKey', type: 'password' } ] } } module.exports = { credClass: ExaSearchApi }