import { INodeParams, INodeCredential } from '../src/Interface' class FireCrawlApiCredential implements INodeCredential { label: string name: string version: number description: string inputs: INodeParams[] constructor() { this.label = 'FireCrawl API' this.name = 'fireCrawlApi' this.version = 2.0 this.description = 'You can find the FireCrawl API token on your FireCrawl account page.' this.inputs = [ { label: 'FireCrawl API', name: 'firecrawlApiToken', type: 'password' }, { label: 'FireCrawl API URL', name: 'firecrawlApiUrl', type: 'string', default: 'https://api.firecrawl.dev' } ] } } module.exports = { credClass: FireCrawlApiCredential }