import { INodeParams, INodeCredential } from '../src/Interface' class SpiderApiCredential implements INodeCredential { label: string name: string version: number description: string inputs: INodeParams[] constructor() { this.label = 'Spider API' this.name = 'spiderApi' this.version = 1.0 this.description = 'Get your API key from the Spider dashboard.' this.inputs = [ { label: 'Spider API Key', name: 'spiderApiKey', type: 'password' } ] } } module.exports = { credClass: SpiderApiCredential }