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

18 lines
326 B
TypeScript
Raw Normal View History

2020-04-26 12:56:50 -07:00
import {
ICredentialType,
NodePropertyTypes,
} from 'n8n-workflow';
export class BannerbearApi implements ICredentialType {
name = 'bannerbearApi';
displayName = 'Bannerbear API';
properties = [
{
displayName: 'Project API Key',
name: 'apiKey',
type: 'string' as NodePropertyTypes,
default: '',
},
];
}