import { INodeParams, INodeCredential } from '../src/Interface' class PostgresApi implements INodeCredential { label: string name: string version: number description: string inputs: INodeParams[] constructor() { this.label = 'Postgres API' this.name = 'PostgresApi' this.version = 1.0 this.inputs = [ { label: 'User', name: 'user', type: 'string', placeholder: '' }, { label: 'Password', name: 'password', type: 'password', placeholder: '' } ] } } module.exports = { credClass: PostgresApi }