UNPKG

@tuanltntu/n8n-nodes-bitrix24

Version:

Comprehensive n8n community node for Bitrix24 API integration with CRM, Tasks, Chat, Telephony, and more

19 lines (18 loc) 371 B
/** * Simple debug utility for Bitrix24 Node */ export declare class Debug { static isEnabled: boolean; /** * Log debug information if debug mode is enabled */ static log(message: string, data?: any): void; /** * Enable debug mode */ static enable(): void; /** * Disable debug mode */ static disable(): void; }