n8n/packages/nodes-base/credentials/ClearbitApi.credentials.ts
Ricardo Espinoza c9d5208d48 Clearbit node
2020-01-26 23:27:14 -05:00

18 lines
312 B
TypeScript

import {
ICredentialType,
NodePropertyTypes,
} from 'n8n-workflow';
export class ClearbitApi implements ICredentialType {
name = 'clearbitApi';
displayName = 'Clearbit API';
properties = [
{
displayName: 'API Key',
name: 'apiKey',
type: 'string' as NodePropertyTypes,
default: '',
},
];
}