n8n/packages/nodes-base/credentials/MandrillApi.credentials.ts
2019-10-26 13:00:36 -04:00

19 lines
313 B
TypeScript

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