n8n-nodes-ynab
Version:
A YNAB integration for n8n
11 lines (10 loc) • 364 B
TypeScript
import { IAuthenticateGeneric, ICredentialType, INodeProperties } from 'n8n-workflow';
import { Icon } from 'n8n-workflow/dist/Interfaces';
export declare class YNABApi implements ICredentialType {
name: string;
displayName: string;
documentationUrl: string;
properties: INodeProperties[];
icon: Icon;
authenticate: IAuthenticateGeneric;
}