import { INodeParams, INodeCredential } from '../src/Interface' class WolframAlphaApp implements INodeCredential { label: string name: string version: number description: string inputs: INodeParams[] constructor() { this.label = 'WolframAlpha App ID' this.name = 'wolframAlphaAppId' this.version = 1.0 this.description = 'Get an App Id from Wolfram Alpha Portal' this.inputs = [ { label: 'App ID', name: 'wolframAlphaAppId', type: 'password' } ] } } module.exports = { credClass: WolframAlphaApp }