n8n/packages/nodes-base/credentials/AirtableApi.credentials.ts
2019-07-07 19:19:07 +02:00

19 lines
313 B
TypeScript

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