UNPKG

@rxap/n8n-utilities

Version:

This package provides utility functions and classes for n8n nodes, including custom authentication methods (Bearer Auth, Oauth2 Proxy Auth, Base URL), a decorator for capturing execution errors, and base classes for creating nodes from OpenAPI specificati

9 lines (8 loc) 256 B
import type { Icon, ICredentialType, INodeProperties } from 'n8n-workflow'; export declare class BaseUrl implements ICredentialType { name: string; displayName: string; genericAuth: boolean; icon: Icon; properties: INodeProperties[]; }