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

20 lines
341 B
TypeScript
Raw Normal View History

2019-10-26 09:58:04 -07:00
import {
ICredentialType,
INodeProperties,
2019-10-26 09:58:04 -07:00
} from 'n8n-workflow';
export class MandrillApi implements ICredentialType {
name = 'mandrillApi';
displayName = 'Mandrill API';
documentationUrl = 'mandrill';
properties: INodeProperties[] = [
2019-10-26 09:58:04 -07:00
{
displayName: 'API Key',
name: 'apiKey',
type: 'string',
2019-10-26 09:58:04 -07:00
default: '',
},
];
}