n8n/packages/nodes-base/credentials/HunterApi.credentials.ts

16 lines
329 B
TypeScript
Raw Normal View History

import { ICredentialType, INodeProperties } from 'n8n-workflow';
2020-01-24 13:16:54 -08:00
export class HunterApi implements ICredentialType {
name = 'hunterApi';
displayName = 'Hunter API';
documentationUrl = 'hunter';
properties: INodeProperties[] = [
2020-01-24 13:16:54 -08:00
{
displayName: 'API Key',
name: 'apiKey',
type: 'string',
2020-01-24 13:16:54 -08:00
default: '',
},
];
}