Bannerbear Node

This commit is contained in:
ricardo
2020-04-26 14:56:50 -05:00
parent 2fbe6b75cc
commit 413edbefda
7 changed files with 483 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
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: '',
},
];
}