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

19 lines
361 B
TypeScript
Raw Normal View History

2021-03-04 02:39:06 -08:00
import {
ICredentialType,
INodeProperties,
2021-03-04 02:39:06 -08:00
} from 'n8n-workflow';
export class ApiTemplateIoApi implements ICredentialType {
name = 'apiTemplateIoApi';
displayName = 'APITemplate.io API';
documentationUrl = 'apiTemplateIo';
properties: INodeProperties[] = [
2021-03-04 02:39:06 -08:00
{
displayName: 'API Key',
name: 'apiKey',
type: 'string',
2021-03-04 02:39:06 -08:00
default: '',
},
];
}