import { INodeParams, INodeCredential } from '../src/Interface' class HuggingFaceApi implements INodeCredential { label: string name: string version: number inputs: INodeParams[] constructor() { this.label = 'HuggingFace API' this.name = 'huggingFaceApi' this.version = 1.0 this.inputs = [ { label: 'HuggingFace Api Key', name: 'huggingFaceApiKey', type: 'password' } ] } } module.exports = { credClass: HuggingFaceApi }