UNPKG

n8n-nodes-base

Version:

Base nodes of n8n

22 lines (18 loc) 471 B
/** * Bannerbear Node - Version 1 * Discriminator: resource=template, operation=getAll */ interface Credentials { bannerbearApi: CredentialReference; } /** Get many templates */ export type BannerbearV1TemplateGetAllParams = { resource: 'template'; operation: 'getAll'; }; export type BannerbearV1TemplateGetAllNode = { type: 'n8n-nodes-base.bannerbear'; version: 1; credentials?: Credentials; config: NodeConfig<BannerbearV1TemplateGetAllParams>; };